-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.39 KB
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
{
"name": "eslines",
"version": "2.1.0",
"description": "Utility to process ESLint JSON reports",
"keywords": [
"eslint"
],
"license": "GPL-2.0+",
"repository": {
"type": "git",
"url": "https://github.com/Automattic/eslines.git"
},
"main": "./index.js",
"bin": {
"eslines": "./index.js"
},
"scripts": {
"clean": "rm -rf node_modules",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"test": "tape tests/test*js | tap-min",
"test-differ": "tape tests/test-differ.js | tap-min",
"test-enforce": "tape tests/test-enforce.js | tap-min",
"test-downgrade-unmodified-lines": "tape tests/test-downgrade-unmodified-lines.js | tap-min",
"test-exit-codes": "tape tests/test-exit-codes.js | tap-min",
"test-filter-parsing-errors": "tape tests/test-filter-parsing-errors.js | tap-min",
"test-filter-when-format": "tape tests/test-filter-when-format.js | tap-min"
},
"dependencies": {
"jest-docblock": "^29.0.0",
"optionator": "^0.9.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.0.0",
"eslint-config-wpcalypso": "^6.1.0",
"eslint-plugin-inclusive-language": "^2.1.1",
"eslint-plugin-jsdoc": "^41.1.1",
"eslint-plugin-wpcalypso": "^5.0.0",
"tap-min": "^2.0.0",
"tape": "^5.3.1"
},
"peerDependencies": {
"eslint": ">=6.0.0"
},
"files": [
"src/**/*.js",
"index.js"
]
}