-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.38 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
{
"name": "eslint-plugin-boyscout",
"version": "1.0.1",
"description": "An experimental tool to help track refactoring efforts.",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"boyscout"
],
"author": "Anonymous Coward",
"main": "lib/index.js",
"scripts": {
"test": "mocha test --recursive",
"coverage": "istanbul cover _mocha --report lcovonly -- -R spec --recursive",
"format": "prettier-eslint --write \"lib/**/*.js\" \"test/**/*.js\"",
"lint": "eslint \"lib/**/*.js\" \"test/**/*.js\"",
"lint-staged": "lint-staged"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"git add"
]
},
"peerDependencies": {
"eslint": ">=3.19.0"
},
"dependencies": {
"requireindex": "^1.2.0"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^1.1.4",
"istanbul": "^0.4.5",
"lint-staged": "^8.0.5",
"mocha": "^5.2.0",
"prettier-eslint-cli": "^4.7.1"
},
"engines": {
"node": ">=0.10.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nicolaslt/eslint-plugin-boyscout.git"
}
}