forked from ota-meshi/eslint-plugin-jsonc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
121 lines (121 loc) · 4.29 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "eslint-plugin-jsonc",
"version": "2.5.0",
"description": "ESLint plugin for JSON, JSONC and JSON5 files.",
"main": "dist/index.js",
"typescript": {
"definition": "index.d.ts"
},
"types": "index.d.ts",
"files": [
"dist",
"index.d.ts",
"conf"
],
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"scripts": {
"prebuild": "npm run -s clean",
"build": "npm run build:ts && npm run build:dts",
"build:ts": "tsc --project ./tsconfig.build.json",
"build:dts": "npm run build:dts-step1 && npm run build:dts-step2",
"build:dts-step1": "tsc --declaration --outDir dist-ts --project ./tsconfig.build.json",
"build:dts-step2": "dts-bundle --name eslint-plugin-jsonc --main ./dist-ts/index.d.ts --out ../index.d.ts",
"clean": "rimraf .nyc_output dist coverage",
"lint": "eslint . --ext .js,.vue,.ts,.md,.json,.json5,.yaml,.yml",
"eslint-fix": "eslint . --ext .js,.vue,.ts,.md,.json,.json5,.yaml,.yml --fix",
"test:base": "mocha --require ts-node/register \"tests/lib/**/*.ts\" --reporter dot --timeout 60000",
"test": "npm run test:base",
"test:nyc": "nyc --reporter=lcov npm run test:base",
"test:debug": "mocha --require ts-node/register/transpile-only \"tests/lib/**/*.ts\" --reporter dot",
"pretest:integrations": "npm run build:ts && npm pack",
"test:integrations": "mocha --require ts-node/register \"tests-integrations/lib/**/*.ts\" --reporter dot --timeout 120000",
"update": "ts-node --transpile-only ./tools/update.ts && npm run eslint-fix && npm run test:nyc",
"update-only": "ts-node --transpile-only ./tools/update.ts",
"new": "ts-node ./tools/new-rule.ts",
"predocs:watch": "npm run build:ts",
"docs:watch": "vuepress dev --debug docs",
"docs:build": "npm run build:ts && vuepress build docs --no-cache",
"prerelease": "npm run test && npm run build",
"release": "changeset publish",
"preversion": "npm test && git add .",
"version": "env-cmd -e version npm run update && git add .",
"preversion:ci": "npm run build",
"version:ci": "env-cmd -e version-ci npm run update && changeset version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ota-meshi/eslint-plugin-jsonc.git"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"jsonc",
"json5",
"json"
],
"author": "Yosuke Ota",
"funding": "https://github.com/sponsors/ota-meshi",
"license": "MIT",
"bugs": {
"url": "https://github.com/ota-meshi/eslint-plugin-jsonc/issues"
},
"homepage": "https://ota-meshi.github.io/eslint-plugin-jsonc/",
"dependencies": {
"eslint-utils": "^3.0.0",
"jsonc-eslint-parser": "^2.0.4",
"natural-compare": "^1.4.0"
},
"peerDependencies": {
"eslint": ">=6.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.6",
"@changesets/cli": "^2.24.2",
"@ota-meshi/eslint-plugin": "^0.13.0",
"@types/eslint": "^8.0.0",
"@types/eslint-scope": "^3.7.0",
"@types/eslint-visitor-keys": "^1.0.0",
"@types/mocha": "^10.0.0",
"@types/natural-compare": "^1.4.0",
"@types/node": "^18.0.0",
"@types/semver": "^7.3.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-eslint": "^10.1.0",
"dts-bundle": "^0.7.3",
"env-cmd": "^10.1.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-eslint-plugin": "^5.0.0",
"eslint-plugin-json-schema-validator": "^4.0.0",
"eslint-plugin-jsonc": "^2.0.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-node-dependencies": "^0.10.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-regexp": "^1.0.0",
"eslint-plugin-vue": "^9.0.0",
"eslint-plugin-yml": "^1.0.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"raw-loader": "^4.0.1",
"semver": "^7.3.2",
"stylelint": "^14.9.1",
"stylelint-config-recommended-vue": "^1.0.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-stylus": "^0.17.0",
"ts-node": "^10.0.0",
"typescript": "^4.0.0",
"vue-eslint-editor": "^1.1.0",
"vue-eslint-parser": "^9.0.0",
"vuepress": "^1.8.2"
},
"publishConfig": {
"access": "public"
}
}