forked from SchemaStore/schemastore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.62 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
{
"name": "schemastore.org",
"version": "1.0.0",
"description": "A collection of JSON Schemas",
"readme": "../README.md",
"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": "commonjs",
"scripts": {
"grunt": "grunt",
"prettier": "prettier --config ../.prettierrc.json --ignore-path ../.prettierignore --check ..",
"prettier:fix": "prettier --config ../.prettierrc.json --ignore-path ../.prettierignore --write ..",
"eslint": "eslint Gruntfile.cjs",
"eslint:fix": "eslint --fix Gruntfile.cjs",
"build": "npm run eslint && grunt && ./scripts/dirty_repository_check.sh",
"coverage": "./scripts/coverage.sh",
"remote": "grunt remote_test",
"maintenance": "grunt local_maintenance",
"eslint_check": "npm run eslint",
"eslint_fix": "npm run eslint:fix"
},
"devDependencies": {
"@exodus/schemasafe": "^1.3.0",
"@ltd/j-toml": "^1.38.0",
"@prantlf/jsonlint": "^14.0.3",
"ajv": "^8.12.0",
"ajv-draft-04": "^1.0.0",
"ajv-formats": "^2.1.1",
"ajv-formats-draft2019": "^1.6.1",
"axios": "^1.2.6",
"c8": "^7.12.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.1.1",
"grunt": "^1.6.1",
"prettier": "^3.0.3",
"prettier-plugin-sort-json": "^3.1.0",
"yaml": "^2.3.2"
}
}