UNPKG

2.82 kBJSONView Raw
1{
2 "name": "eslint-find-rules",
3 "version": "1.14.1",
4 "description": "Find built-in ESLint rules you don't have in your custom config.",
5 "main": "src/lib/rule-finder.js",
6 "scripts": {
7 "cover": "nyc --reporter=lcov --reporter=text npm test",
8 "test": "mocha --recursive",
9 "lint": "eslint --ignore-pattern test/fixtures .",
10 "update-contributors": "all-contributors generate",
11 "commit": "git-cz",
12 "validate": "npm-run-all --parallel lint cover --sequential check-coverage",
13 "check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
14 "report-coverage": "cat ./coverage/lcov.info | node_modules/.bin/codecov",
15 "semantic-release": "semantic-release pre && npm publish && semantic-release post",
16 "travis-after-all": "travis-after-all && npm run report-coverage && npm run semantic-release"
17 },
18 "bin": {
19 "eslint-find-rules": "src/bin/find.js",
20 "eslint-diff-rules": "src/bin/diff.js"
21 },
22 "keywords": [],
23 "author": "Michał Gołębiowski <m.goleb@gmail.com>",
24 "contributors": [
25 "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
26 "Sarbbottam Bandyopadhyay <sarbbottam@gmail.com>",
27 "Andreas Windt <email@andreaswindt.com>"
28 ],
29 "license": "MIT",
30 "dependencies": {
31 "cliui": "^3.2.0",
32 "eslint-rule-documentation": "^1.0.0",
33 "path-is-absolute": "1.0.0",
34 "which": "^1.2.8",
35 "window-size": "^0.2.0",
36 "yargs": "^5.0.0"
37 },
38 "devDependencies": {
39 "all-contributors-cli": "3.0.6",
40 "codecov": "1.0.1",
41 "commitizen": "2.8.6",
42 "cz-conventional-changelog": "1.2.0",
43 "eslint": "3.5.0",
44 "eslint-config-kentcdodds": "6.2.0",
45 "ghooks": "1.3.2",
46 "mocha": "^3.0.1",
47 "npm-run-all": "3.1.0",
48 "nyc": "6.6.1",
49 "opt-cli": "^1.1.1",
50 "proxyquire": "1.7.10",
51 "semantic-release": "4.3.5",
52 "sinon": "^1.17.3",
53 "travis-after-all": "^1.4.4",
54 "validate-commit-msg": "2.8.0"
55 },
56 "peerDependencies": {
57 "eslint": "^2.0.0 || ^3.0.0"
58 },
59 "eslintConfig": {
60 "extends": "kentcdodds",
61 "parserOptions": {
62 "ecmaVersion": 5
63 },
64 "env": {
65 "mocha": true
66 },
67 "rules": {
68 "no-var": 0,
69 "func-names": 0,
70 "object-shorthand": 0
71 }
72 },
73 "nyc": {
74 "exclude": [
75 "test/**/*"
76 ]
77 },
78 "config": {
79 "ghooks": {
80 "commit-msg": "validate-commit-msg",
81 "pre-commit": "opt --in pre-commit --exec \"npm run validate\""
82 },
83 "commitizen": {
84 "path": "./node_modules/cz-conventional-changelog"
85 }
86 },
87 "repository": {
88 "type": "git",
89 "url": "https://github.com/sarbbottam/eslint-find-rules.git"
90 },
91 "bugs": {
92 "url": "https://github.com/sarbbottam/eslint-find-rules/issues"
93 },
94 "homepage": "https://github.com/sarbbottam/eslint-find-rules#readme"
95}