forked from moneytree/eslint-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 893 Bytes
/
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
{
"name": "@moneytree/eslint-config",
"version": "0.7.0",
"description": "ESLint shared configuration for Moneytree projects",
"main": "nodejs.js",
"scripts": {
"lint:js": "eslint . -c eslintrc/nodejs.yml",
"lint:yml": "yamllint eslintrc/*.yml",
"rules": "eslint-find-rules -du ./eslintrc/nodejs.yml",
"test": "npm run lint:js && npm run lint:yml && npm run rules"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"author": "Ron Korving <[email protected]>",
"repository": "github:moneytree/eslint-config",
"license": "MIT",
"peerDependencies": {
"eslint": "^6.7.0"
},
"dependencies": {
"js-yaml": "3.13.1"
},
"devDependencies": {
"eslint": "6.7.1",
"eslint-find-rules": "3.4.0",
"husky": "3.1.0",
"yaml-lint": "1.2.4"
},
"keywords": [
"eslint",
"configuration",
"moneytree"
]
}