-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
97 lines (97 loc) · 2.42 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
95
96
97
{
"name": "eslint-watch",
"version": "8.0.0",
"description": "Run eslint with watch mode",
"main": "./src",
"scripts": {
"ci:win": "npm run lint && npm test",
"ci:test": "npm run lint && npm run test",
"clean": "rm -rf build node_modules",
"coverage": "nyc npm test",
"deploy": "./scripts/deploy.sh",
"prepare": "husky install",
"lint:watch": "node ./bin/esw -w",
"lint": "node ./bin/esw",
"mocha": "mocha --recursive --timeout 10000 -r tests/globals.js",
"postcoverage": "nyc report --reporter=text-lcov | coveralls",
"test:integration": "yarn mocha ./tests/integration/**/*spec.js",
"test:unit": "yarn mocha ./tests/unit/**/*spec.js",
"test:watch": "npm run test -- -R min -b -w",
"test": "yarn mocha ./tests/**/**/**/*spec.js"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rizowski/eslint-watch.git"
},
"bin": {
"esw": "./bin/esw"
},
"files": [
"bin",
"src",
"package.json",
"README.md"
],
"keywords": [
"eslint",
"plugin",
"command line tool",
"watch",
"javascript",
"linter",
"cli"
],
"author": {
"name": "Colten Rouska",
"email": "[email protected]"
},
"license": "MIT",
"lint-staged": {
"*.js": [
"npm run lint -- --fix",
"prettier --write --print-width=160"
],
"*.{md,json,yaml,yml}": [
"prettier --write --print-width=80"
]
},
"bugs": {
"url": "https://github.com/rizowski/eslint-watch/issues"
},
"homepage": "https://github.com/rizowski/eslint-watch",
"peerDependencies": {
"eslint": ">=8 <9.0.0"
},
"dependencies": {
"chokidar": "^3.5.2",
"debug": "^4.3.2",
"execa": "^5.1.1",
"keypress": "^0.2.1",
"lodash.debounce": "^4.0.8",
"lodash.isempty": "^4.4.0",
"lodash.isequal": "^4.5.0",
"lodash.kebabcase": "^4.1.1",
"lodash.unionwith": "^4.6.0",
"optionator": "^0.9.1"
},
"devDependencies": {
"chai": "^4.3.4",
"coveralls": "^3.1.1",
"eslint": "^8",
"eslint-config-prettier": "^8.3.0",
"eslint-config-xo-space": "^0.30.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"mocha": "^9.1.3",
"mocha-lcov-reporter": "^1.3.0",
"mocha-sinon": "^2.0.0",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"sinon": "^12.0.1",
"sinon-chai": "^3.7.0"
}
}