forked from AlloyTeam/eslint-config-alloy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.65 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "eslint-config-alloy",
"version": "3.7.2",
"description": "AlloyTeam ESLint 规则",
"main": "index.js",
"scripts": {
"start": "npm run dev",
"dev": "run-p dev:eslintrc dev:site",
"dev:eslintrc": "nodemon",
"dev:site": "parcel site/index.html --out-dir .cache",
"build": "run-s build:eslintrc build:site",
"build:eslintrc": "ts-node scripts/build.ts",
"build:site": "run-s clear:dist build:html",
"clear:dist": "rimraf ./dist",
"build:html": "parcel build site/index.html --public-url ./",
"test": "npm run lint && ts-node ./test/index.ts && npm run test:rulesCoverage",
"test:rulesCoverage": "ts-node ./scripts/rulesCoverage.ts",
"lint": "run-s eslint prettier",
"eslint": "eslint --ext .js,.jsx,.ts,.tsx,.vue --ignore-pattern \"bad.*\" .",
"prettier": "prettier -l \"./**/*\"",
"prettier:fix": "prettier --write -l \"./**/*\"",
"update": "npm install --save-dev @types/eslint@latest @typescript-eslint/eslint-plugin@latest @typescript-eslint/parser@latest babel-eslint@latest eslint@latest eslint-config-prettier@latest eslint-plugin-react@latest eslint-plugin-vue@latest typescript@latest vue-eslint-parser@latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlloyTeam/eslint-config-alloy.git"
},
"keywords": [
"eslint",
"eslintrc",
"eslintconfig",
"config",
"alloy",
"alloyteam",
"javascript",
"styleguide",
"react",
"vue",
"typescript"
],
"author": "xcatliu <[email protected]>",
"contributors": [
"heyli <[email protected]>",
"Swan <[email protected]>",
"DiamondYuan <[email protected]>",
"Dash Chen <[email protected]>",
"lzw <[email protected]>",
"ryoliu <[email protected]>",
"sunhui04 <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/AlloyTeam/eslint-config-alloy/issues"
},
"homepage": "https://alloyteam.github.io/eslint-config-alloy/",
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
},
"dependencies": {},
"devDependencies": {
"@types/cookie": "^0.4.0",
"@types/doctrine": "0.0.3",
"@types/eslint": "^6.8.0",
"@types/node": "^14.0.1",
"@types/prettier": "^2.0.0",
"@types/react": "^16.9.15",
"@types/react-dom": "^16.8.4",
"@types/react-tooltip": "^4.2.4",
"@types/rimraf": "^3.0.0",
"@types/xml-escape": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"babel-eslint": "^10.1.0",
"cookie": "^0.4.0",
"doctrine": "^3.0.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-vue": "^6.2.2",
"husky": "^4.0.2",
"insert-tag": "^0.1.2",
"mobi-plugin-color": "^1.0.0",
"mobi.css": "^3.1.1",
"nodemon": "^2.0.0",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.1",
"react": "^16.12.0",
"react-dom": "^16.8.6",
"react-tooltip": "^4.0.3",
"rimraf": "^3.0.0",
"ts-node": "^7.0.1",
"typescript": "^3.9.2",
"vue-eslint-parser": "^7.0.0",
"xml-escape": "^1.1.0"
},
"greenkeeper": {
"ignore": [
"ts-node"
]
}
}