forked from mantoni/eslint_d.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.79 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
{
"name": "eslint_d",
"version": "7.2.0",
"description": "Makes eslint the fastest linter on the planet",
"bin": "bin/eslint_d.js",
"keywords": [
"eslint",
"lint"
],
"author": "Maximilian Antoni <[email protected]> (http://maxantoni.de/)",
"contributors": [
"Richard Herrera <[email protected]>",
"Kevin Yue <[email protected]>",
"Roger Zurawicki <[email protected]>",
"jpsc <[email protected]>",
"ruanyl <[email protected]>",
"Nick Hwang <[email protected]>",
"Aaron Jensen <[email protected]>",
"Simen Bekkhus <[email protected]>",
"Caleb Eby <[email protected]>",
"Huáng Jùnliàng <[email protected]>",
"Joseph Frazier <[email protected]>"
],
"homepage": "https://github.com/mantoni/eslint_d.js",
"eslintConfig": {
"extends": "@studio"
},
"scripts": {
"test": "mocha --file ./node_modules/mocha-referee-sinon",
"watch": "mocha --watch",
"lint": "eslint . --ignore-pattern '**/node_modules/**'",
"posttest": "npm run lint",
"prepare": "cd test/fixture/v4.0.x && npm i && cd ../v5.0.x && npm i",
"preversion": "npm test",
"version": "changes --commits --footer",
"postversion": "git push --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/mantoni/eslint_d.js.git"
},
"dependencies": {
"eslint": "^4 || ^5",
"nanolru": "^1.0.0",
"optionator": "^0.8.1",
"resolve": "^1.8.1",
"supports-color": "^5.5.0"
},
"files": [
"bin",
"lib",
"LICENSE",
"README.md"
],
"license": "MIT",
"devDependencies": {
"@sinonjs/referee-sinon": "^5.0.0",
"@studio/changes": "^1.7.0",
"@studio/eslint-config": "^1.0.2",
"mocha": "^5.2.0",
"mocha-referee-sinon": "^1.0.0"
}
}