UNPKG

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