forked from ota-meshi/eslint-plugin-json-schema-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.76 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
{
"name": "eslint-plugin-json-schema-validator",
"version": "3.1.3",
"description": "ESLint plugin that validates data using JSON Schema Validator.",
"repository": "git+https://github.com/ota-meshi/eslint-plugin-json-schema-validator.git",
"homepage": "https://ota-meshi.github.io/eslint-plugin-json-schema-validator/",
"author": "Yosuke Ota",
"funding": "https://github.com/sponsors/ota-meshi",
"license": "MIT",
"engines": {
"node": "^14.17.0 || >=16.0.0"
},
"main": "lib/index.js",
"files": [
"lib",
"schemastore"
],
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"validator ",
"validation",
"jsonschema",
"json-schema"
],
"scripts": {
"build": "yarn build:ts",
"build:ts": "tsc --project ./tsconfig.build.json",
"clean": "rimraf .nyc_output dist coverage",
"cover": "nyc --reporter=lcov yarn test",
"docs:build": "yarn build:ts && vuepress build docs --no-cache",
"docs:watch": "vuepress dev --debug docs",
"lint": "eslint . --ext .js,.vue,.ts,.json,.md,.toml,.yaml,.yml",
"lint-fix": "yarn lint --fix",
"mocha": "yarn ts node_modules/mocha/bin/mocha",
"new": "yarn ts ./tools/new-rule",
"prebuild": "yarn -s clean",
"predocs:watch": "yarn build:ts",
"preversion": "yarn test && git add .",
"re-migrate": "yarn ts tools/update-schemastore/re-migrate",
"test": "env-cmd -e test yarn mocha \"tests/src/**/*.ts\" --reporter dot --timeout 60000",
"ts": "node -r esbuild-register",
"update": "yarn ts ./tools/update && yarn lint-fix",
"update:schemastore": "yarn ts tools/update-schemastore",
"update:schemastore-only": "yarn ts tools/update-schemastore/only",
"version": "env-cmd -e version yarn update && git add ."
},
"peerDependencies": {
"eslint": ">=6.0.0"
},
"dependencies": {
"ajv": "^8.0.0",
"debug": "^4.3.1",
"eslint-utils": "^3.0.0",
"json-schema-migrate": "^2.0.0",
"jsonc-eslint-parser": "^2.0.0",
"minimatch": "^5.0.0",
"synckit": "^0.7.1",
"toml-eslint-parser": "^0.4.0",
"tunnel-agent": "^0.6.0",
"yaml-eslint-parser": "^1.0.0"
},
"devDependencies": {
"@actions/core": "^1.2.6",
"@ota-meshi/eslint-plugin": "^0.11.1",
"@types/debug": "^4.1.5",
"@types/eslint": "^8.0.0",
"@types/eslint-scope": "^3.7.0",
"@types/eslint-visitor-keys": "^1.0.0",
"@types/estree": "^0.0.52",
"@types/mocha": "^9.0.0",
"@types/node": "^18.0.0",
"@types/request": "^2.48.5",
"@types/semver": "^7.3.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"env-cmd": "^10.1.0",
"esbuild-register": "^3.3.3",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-eslint-plugin": "^4.0.0",
"eslint-plugin-json-schema-validator": "^3.0.0",
"eslint-plugin-jsonc": "^2.0.0",
"eslint-plugin-markdown": "^2.0.0-0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-node-dependencies": "^0.9.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-regexp": "^1.0.0",
"eslint-plugin-toml": "^0.3.0",
"eslint-plugin-vue": "^9.0.0",
"eslint-plugin-yml": "^1.0.0",
"eslint4b": "^7.3.1",
"espree": "^9.0.0",
"mocha": "^10.0.0",
"monaco-editor": "^0.33.0",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"prettier-plugin-pkg": "^0.16.0",
"raw-loader": "^4.0.1",
"request": "^2.88.2",
"semver": "^7.3.2",
"stylelint": "^14.9.1",
"stylelint-config-recommended-vue": "^1.0.0",
"stylelint-config-standard": "^26.0.0",
"stylelint-stylus": "^0.16.1",
"ts-node": "^10.8.1",
"typescript": "^4.0.0",
"vue-eslint-editor": "^1.1.0",
"vue-eslint-parser": "^9.0.0",
"vuepress": "^1.5.2"
}
}