-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 1.79 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
{
"name": "eslint-config-wework",
"version": "3.0.0",
"author": "Mike Nason <[email protected]> (https://github.com/nason)",
"license": "MIT",
"description": "ESLint config for WeWork projects",
"keywords": [
"eslint",
"config"
],
"scripts": {
"prepush": "npm run security-scan",
"precommit": "lint-staged",
"security-scan": "nsp check --output summary --warn-only",
"version": "auto-changelog --template compact --package; git add CHANGELOG.md",
"release": "np",
"lint": "eslint",
"lint:all": "npm run lint '**/*.{js,jsx}'"
},
"lint-staged": {
"*.js": [
"lint"
]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/wework/eslint-config-wework.git"
},
"bugs": {
"url": "https://github.com/wework/eslint-config-wework/issues"
},
"homepage": "https://github.com/wework/eslint-config-wework#readme",
"devDependencies": {
"auto-changelog": "0.3.1",
"eslint": ">=4.4.1",
"husky": "0.14.3",
"lint-staged": "4.0.3",
"np": "2.16.0",
"nsp": "2.7.0"
},
"peerDependencies": {
"eslint": ">=4.4.1",
"eslint-config-airbnb": "15.1.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-lodash": "2.4.4",
"eslint-plugin-mocha": "4.11.0",
"eslint-plugin-node": "5.1.1",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-react": "7.2.0",
"eslint-plugin-security": "1.4.0"
},
"dependencies": {
"eslint-config-airbnb": "15.1.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-lodash": "2.4.4",
"eslint-plugin-mocha": "4.11.0",
"eslint-plugin-node": "5.1.1",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-react": "7.2.0",
"eslint-plugin-security": "1.4.0"
}
}