-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.4 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
{
"name": "eslint-plugin-json-es",
"version": "1.6.0",
"description": "A JSON parser for ESLint.",
"main": "index.js",
"scripts": {
"lint": "npm run lint:lib && npm run lint:rules",
"lint:lib": "eslint lib",
"lint:rules": "eslint rules",
"coverage": "c8 --check-coverage --lines 100 npm test",
"test": "vitest run",
"testui": "vitest --ui",
"prepublishOnly": "npm test",
"patch": "npm version patch"
},
"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": "^3.3.0",
"espree": "^9.3.1"
},
"peerDependencies": {
"eslint": ">= 7"
},
"devDependencies": {
"@vitest/ui": "^1.5.2",
"c8": "^9.1.0",
"eslint": "^8.10.0",
"vitest": "^1.5.2"
}
}