forked from apideck-libraries/better-ajv-errors
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.72 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
{
"name": "better-json-schema-errors",
"description": "Human-friendly JSON Schema validation for APIs",
"version": "0.2.3",
"author": "Apideck <[email protected]> (https://apideck.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Mermade/better-json-schema-errors"
},
"bugs": {
"url": "https://github.com/Mermade/better-json-schema-errors/issues"
},
"main": "dist/index.js",
"module": "dist/better-json-schema-errors.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"release": "np",
"analyze": "size-limit --why"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"size-limit": [
{
"path": "dist/better-json-schema-errors.cjs.production.min.js",
"limit": "2 KB"
},
{
"path": "dist/better-json-schema-errors.esm.js",
"limit": "2 KB"
}
],
"devDependencies": {
"@exodus/schemasafe": "git+https://github.com/ExodusMovement/schemasafe.git",
"@size-limit/preset-small-lib": "^4.11.0",
"husky": "^6.0.0",
"np": "^7.5.0",
"size-limit": "^4.11.0",
"tsdx": "^0.14.1",
"tslib": "^2.2.0",
"typescript": "^4.3.2"
},
"dependencies": {
"jaro-winkler-typescript": "^1.0.1",
"json-schema": "^0.3.0",
"jsonpointer": "^4.1.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"keywords": [
"json",
"schema",
"json-schema",
"errors",
"human",
"postman"
]
}