forked from IanVS/eslint-nibble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.43 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
{
"name": "eslint-nibble",
"version": "4.2.1",
"description": "Ease into ESLint, by fixing one rule at a time",
"main": "index.js",
"bin": {
"eslint-nibble": "./bin/eslint-nibble.js"
},
"scripts": {
"test": "tape -r babel-register tests/**/*.js | tap-spec",
"pretest": "npm run lint && npm run compile",
"compile": "babel src --out-dir lib",
"compilew": "babel src --out-dir lib --watch",
"prepublish": "npm run compile",
"lint": "eslint src tests/lib"
},
"keywords": [
"eslint",
"formatter",
"linting",
"linter",
"eslint-stats",
"eslint-summary",
"eslint-friendly-formatter"
],
"author": "Ian VanSchooten",
"license": "MIT",
"bugs": {
"url": "https://github.com/IanVS/eslint-nibble/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/IanVS/eslint-nibble.git"
},
"dependencies": {
"chalk": "^1.1.3",
"eslint": "^4.2.0",
"eslint-filtered-fix": "^0.1.1",
"eslint-friendly-formatter": "^2.0.7",
"eslint-stats": "^1.0.0",
"eslint-summary": "^1.0.0",
"inquirer": "^3.0.4",
"optionator": "^0.8.2"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-preset-env": "^1.1.8",
"babel-register": "^6.23.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.2",
"eslint-plugin-standard": "^3.0.1",
"tap-spec": "^4.1.1",
"tape": "^4.6.3",
"tape-catch": "^1.0.6"
}
}