forked from zeitport/eslint-plugin-json-es
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
{
"name": "eslint-plugin-json-es",
"version": "1.5.2",
"description": "A JSON parser for ESLint.",
"main": "index.js",
"scripts": {
"lint": "eslint lib",
"test": "jest",
"prepublish": "npm test"
},
"files": [
"README.md",
"lib",
"index.js",
"LICENSE",
"config",
"rules"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zeitport/eslint-plugin-json-es.git"
},
"keywords": [
"eslint",
"eslint-parser",
"eslint-plugin",
"JSON",
"parser"
],
"author": "Christian Schuller <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zeitport/eslint-plugin-json-es/issues"
},
"homepage": "https://github.com/zeitport/eslint-plugin-json-es#readme",
"dependencies": {
"eslint-visitor-keys": "^2.0.0",
"espree": "^7.3.1"
},
"peerDependencies": {
"eslint": ">= 7"
},
"devDependencies": {
"eslint": "^7.15.0",
"jest": "^26.6.3"
}
}