forked from SchemaStore/schemastore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.97 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
{
"name": "schemastore.org",
"version": "1.0.0",
"description": "A collection of JSON Schemas",
"private": true,
"homepage": "https://schemastore.org",
"bugs": {
"url": "https://github.com/schemastore/SchemaStore/issues"
},
"engines": {
"node": ">=18"
},
"license": "Apache 2.0",
"repository": {
"type": "git",
"url": "https://github.com/schemastore/SchemaStore"
},
"type": "module",
"scripts": {
"prettier": "prettier --config .prettierrc.cjs --ignore-path .gitignore --check .",
"prettier:fix": "prettier --config .prettierrc.cjs --ignore-path .gitignore --write .",
"eslint": "eslint ./cli.js",
"eslint:fix": "eslint --fix ./cli.js",
"new-schema": "node --no-deprecation ./cli.js new-schema",
"check": "node ./cli.js check",
"check-remote": "node ./cli.js check-remote",
"maintenance": "node ./cli.js maintenance",
"build": "npm run eslint && node ./cli.js check && ./scripts/dirty_repository_check.sh",
"coverage": "./scripts/coverage.sh",
"grunt": "node ./cli.js check",
"remote": "npm run check-remote",
"eslint_check": "npm run eslint",
"eslint_fix": "npm run eslint:fix"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"@exodus/schemasafe": "^1.3.0",
"@ltd/j-toml": "^1.38.0",
"@prantlf/jsonlint": "^14.0.3",
"ajv": "^8.16.0",
"ajv-draft-04": "^1.0.0",
"ajv-formats": "^2.1.1",
"ajv-formats-draft2019": "^1.6.1",
"c8": "^10.1.2",
"chalk": "^5.3.0",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-promise": "^6.4.0",
"globals": "^15.8.0",
"jsonc-parser": "^3.3.1",
"minimist": "^1.2.8",
"node-fetch": "^3.3.2",
"prettier": "^3.3.2",
"prettier-plugin-sort-json": "^4.0.0",
"yaml": "^2.4.5"
},
"packageManager": "pnpm@9.4.0+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a"
}