-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
67 lines (67 loc) · 1.67 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "eslint-plugin-miniprogram",
"keywords": [
"eslint",
"plugin",
"mini-program",
"mini-app"
],
"engines": {
"node": ">= 8.0"
},
"repository": "git@github.com:airbnb/eslint-plugin-miniprogram.git",
"author": "Chong Ma <chong.ma@airbnb.com>",
"contributors": [
"Jiayu Liu <jiayu.liu@airbnb.com>"
],
"license": "MIT",
"private": false,
"version": "0.2.0",
"description": "eslint plugin for mini programs",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"prebuild": "npm run clean",
"start": "npm run build -- --watch",
"lint": "eslint .",
"build": "tsc -p .",
"clean": "rimraf lib",
"test": "jest"
},
"devDependencies": {
"@types/eslint": "^8.4.10",
"@types/eslint-scope": "^3.7.0",
"@types/eslint-visitor-keys": "^3.3.0",
"@types/jest": "^29.2.4",
"@types/json5": "^2.2.0",
"@types/lodash": "^4.14.136",
"@types/node": "^18.11.12",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"cross-env": "^7.0.3",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"peerDependencies": {
"eslint": "^6.2.0",
"eslint-plugin-vue": "^5.2.3",
"vue-eslint-parser": "^6.0.4"
},
"dependencies": {
"@tinajs/mina-sfc": "^0.2.2",
"eslint-plugin-vue": "^9.8.0",
"json5": "^2.1.0",
"lodash": "^4.17.15",
"vue-eslint-parser": "^9.1.0"
}
}