forked from rizowski/eslint-watch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.08 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
{
"name": "eslint-watch",
"version": "3.0.1",
"description": "Run eslint with watch mode",
"main": "./src/cli.js",
"scripts": {
"eslint": "node ./bin/esw --no-ignore --color",
"clean": "rm -rf build node_modules",
"lint": "node ./bin/esw",
"lw": "node ./bin/esw -w",
"test": "mocha tests --timeout 10000 --recursive --retries 3 -r tests/globals --compilers js:babel-core/register",
"tdd": "mocha -w tests --recursive -R spec",
"ci": "npm run lint && npm run coverage",
"ci-win": "npm run lint && npm test",
"coverage": "istanbul cover _mocha -- --recursive tests --timeout 10000 --retries 3 -r tests/globals --compilers js:babel-core/register",
"build": "babel src -d build -s inline",
"prepublish": "npm run build"
},
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "https://github.com/rizowski/eslint-watch.git"
},
"bin": {
"esw": "./bin/esw"
},
"keywords": [
"eslint",
"plugin",
"command line tool",
"watch",
"javascript",
"linter"
],
"author": {
"name": "Colten Rouska",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/rizowski/eslint-watch/issues"
},
"homepage": "https://github.com/rizowski/eslint-watch",
"peerDependencies": {
"eslint": ">=0.19.0 <4.0.0"
},
"dependencies": {
"babel-polyfill": "^6.20.0",
"bluebird": "^3.4.7",
"chalk": "^1.1.3",
"chokidar": "^1.4.3",
"debug": "^2.6.0",
"keypress": "^0.2.1",
"lodash": "^4.17.4",
"optionator": "^0.8.2",
"source-map-support": "^0.4.8",
"text-table": "^0.2.0",
"unicons": "0.0.3"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^6.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.3.3",
"chai": "^3.5.0",
"eslint": "3",
"eslint-config-rizowski": "^1.0.2",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-sinon": "^1.1.6",
"proxyquire": "^1.7.10",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0"
}
}