forked from godaddy/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2 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
{
"name": "godaddy-style",
"version": "5.1.0",
"description": "The approach to JavaScript at GoDaddy. We think it's pretty decent.",
"scripts": {
"lint": "eslint -c .eslintrc.js packages/**/*.js",
"postinstall": "run-p install:config install:config:es5 install:config:react install:config:react-flow",
"install:config": "cd packages/eslint-config-godaddy && npm install",
"install:config:es5": "cd packages/eslint-config-godaddy-es5 && npm install",
"install:config:react": "cd packages/eslint-config-godaddy-react && npm install",
"install:config:react-flow": "cd packages/eslint-config-godaddy-react-flow && npm install",
"test": "run-p lint test:config test:config:es5 test:config:react test:config:react-flow",
"test:config": "cd packages/eslint-config-godaddy && npm test",
"test:config:es5": "cd packages/eslint-config-godaddy-es5 && npm test",
"test:config:react": "cd packages/eslint-config-godaddy-react && npm test",
"test:config:react-flow": "cd packages/eslint-config-godaddy-react-flow && npm test"
},
"repository": {
"type": "git",
"url": "[email protected]:godaddy/javascript.git"
},
"keywords": [
"godaddy",
"javascript",
"lint",
"styleguide",
"style-guide",
"eslint",
"es6",
"es2015",
"react",
"jsx",
"flow"
],
"license": "MIT",
"author": "GoDaddy.com Operating Company, LLC",
"homepage": "https://github.com/godaddy/javascript",
"bugs": {
"url": "https://github.com/godaddy/javascript/issues"
},
"bin": {
"godaddy-js-style-lint": "./bin/lint",
"godaddy-js-style-jscs": "./bin/jscs",
"godaddy-js-style-eslint": "./bin/eslint"
},
"devDependencies": {
"babel-eslint": "^7.2.1",
"eslint": "^4.3.0",
"eslint-plugin-babel": "^4.0.1",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-find-rules": "^3.1.1",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-react": "^6.9.0"
},
"dependencies": {
"npm-run-all": "^4.0.2"
}
}