forked from moneytree/eslint-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 906 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
38
{
"name": "@moneytree/eslint-config",
"version": "1.5.0",
"description": "ESLint shared configuration for Moneytree projects",
"main": "nodejs.js",
"scripts": {
"lint:js": "eslint . -c ./nodejs-bin.js",
"lint:yml": "yamllint eslintrc/*.yml",
"rules": "./scripts/test-rules.sh",
"test": "npm run lint:js && npm run lint:yml && npm run rules"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"author": "Ron Korving <rkorving@moneytree.jp>",
"repository": "github:moneytree/eslint-config",
"license": "MIT",
"peerDependencies": {
"eslint": "^7.15.0"
},
"dependencies": {
"eslint-plugin-node": "11.1.0",
"js-yaml": "4.0.0"
},
"devDependencies": {
"eslint": "7.17.0",
"eslint-find-rules": "3.6.1",
"husky": "4.3.7",
"yaml-lint": "1.2.4"
},
"keywords": [
"eslint",
"configuration",
"moneytree"
]
}