-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
75 lines (75 loc) · 2.07 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
{
"name": "@exodus/schemasafe",
"version": "1.3.0",
"description": "JSON Safe Parser & Schema Validator",
"license": "MIT",
"main": "src/index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ExodusMovement/schemasafe.git"
},
"bugs": {
"url": "https://github.com/ExodusMovement/schemasafe/issues"
},
"homepage": "https://github.com/ExodusMovement/schemasafe",
"files": [
"index.d.ts",
"src/compile.js",
"src/formats.js",
"src/generate-function.js",
"src/index.js",
"src/javascript.js",
"src/known-keywords.js",
"src/pointer.js",
"src/safe-format.js",
"src/scope-functions.js",
"src/scope-utils.js",
"src/tracing.js"
],
"scripts": {
"lint": "prettier --list-different '**/*.js' && eslint .",
"format": "prettier --write '**/*.js'",
"coverage": "c8 --reporter=lcov --reporter=text npm run test",
"coverage:lcov": "c8 --reporter=lcovonly npm run test",
"test:only:json-schema-testsuite": "tape test/json-schema.js | tap-spec",
"test": "npm run test:raw | tap-spec",
"test:raw": "npm run test:normal && npm run test:module",
"test:module": "tape -r ./test/tools/test-module.js test/*.js test/regressions/*.js",
"test:normal": "tape test/*.js test/regressions/*.js",
"test:types": "yarn --cwd test/types test"
},
"dependencies": {},
"devDependencies": {
"c8": "^7.9.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"prettier": "~1.14.3",
"safe-regex": "^1.1.0",
"tap-spec": "^5.0.0",
"tape": "^5.3.1"
},
"resolutions": {
"tap-spec/tap-out/trim": "^1.0.1"
},
"keywords": [
"JSON",
"schema",
"validator",
"validation",
"JSON Schema",
"draft-04",
"draft-06",
"draft-07",
"draft 2019-09",
"draft 2020-12",
"jsonschema",
"json-schema",
"json-schema-validator",
"json-schema-validation"
]
}