-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.57 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-multiplexer",
"version": "2.0.0",
"description": "Combine multiple eslint results and merge results for common files",
"main": "lib/index.js",
"author": "pimlie",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pimlie/eslint-multiplexer"
},
"files": [
"bin",
"lib"
],
"keywords": [
"eslint",
"eslint plugin",
"eslint formatter",
"formatter",
"occurence",
"combine",
"merge",
"multiplex"
],
"bugs": {
"url": "https://github.com/pimlie/eslint-multiplexer/issues"
},
"homepage": "https://github.com/pimlie/eslint-multiplexer#readme",
"bin": {
"eslint-multiplexer": "./bin/eslint-multiplexer.js"
},
"scripts": {
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "eslint bin/* lib test",
"release": "yarn test && standard-version",
"test": "nyc jest test"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"cross-spawn": "^6.0.5",
"minimist": "^1.2.0",
"minimist-options": "^4.0.2"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"codecov": "^3.6.1",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-jsx": "^8.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.21.0",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"nyc": "^14.1.1",
"standard-version": "^7.0.1"
}
}