forked from sarbbottam/eslint-find-rules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.73 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "eslint-find-rules",
"version": "3.1.1",
"description": "Find built-in ESLint rules you don't have in your custom config.",
"main": "dist/lib/rule-finder.js",
"scripts": {
"cover": "nyc --reporter=lcov --reporter=text npm test",
"lint": "xo",
"test": "mocha --recursive",
"update-contributors": "all-contributors generate",
"commit": "git-cz",
"validate": "npm-run-all --parallel lint cover --sequential check-coverage",
"check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"prebuild": "rimraf dist",
"build": "babel src -d dist",
"report-coverage": "cat ./coverage/lcov.info | node_modules/.bin/codecov",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"travis-after-all": "travis-after-all && npm run report-coverage"
},
"bin": {
"eslint-find-rules": "dist/bin/find.js",
"eslint-diff-rules": "dist/bin/diff.js"
},
"keywords": [],
"author": "Michał Gołębiowski <m.goleb@gmail.com>",
"contributors": [
"Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
"Sarbbottam Bandyopadhyay <sarbbottam@gmail.com>",
"Andreas Windt <email@andreaswindt.com>"
],
"license": "MIT",
"dependencies": {
"cliui": "^3.2.0",
"eslint-rule-documentation": "^1.0.0",
"path-is-absolute": "^1.0.1",
"which": "^1.2.8",
"window-size": "0.3.0",
"yargs": "^8.0.1"
},
"devDependencies": {
"all-contributors-cli": "^4.3.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"codecov": "^2.2.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.12.0 || ^4.0.0",
"ghooks": "^2.0.0",
"mocha": "^3.0.1",
"npm-run-all": "^4.0.2",
"nyc": "^11.0.2",
"opt-cli": "^1.1.1",
"proxyquire": "^1.8.0",
"rimraf": "^2.6.0",
"semantic-release": "^6.3.6",
"sinon": "^2.3.4",
"travis-after-all": "^1.4.4",
"validate-commit-msg": "^2.12.2",
"xo": "^0.18.2"
},
"peerDependencies": {
"eslint": "^3.12.0 || ^4.0.0"
},
"nyc": {
"exclude": [
"test/**/*"
]
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "opt --in pre-commit --exec \"npm run validate\""
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/sarbbottam/eslint-find-rules.git"
},
"bugs": {
"url": "https://github.com/sarbbottam/eslint-find-rules/issues"
},
"homepage": "https://github.com/sarbbottam/eslint-find-rules#readme",
"xo": {
"envs": [
"mocha"
],
"esnext": true,
"space": true
}
}