-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.51 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
{
"name": "awesome-ajv-errors",
"version": "0.0.0-development",
"description": "Prettified AJV errors",
"author": "Gustaf Räntilä",
"license": "MIT",
"bugs": {
"url": "https://github.com/grantila/awesome-ajv-errors/issues"
},
"homepage": "https://github.com/grantila/awesome-ajv-errors#readme",
"main": "./dist/index-default.js",
"browser": "./dist/index-default.js",
"exports": {
".": "./dist/index-default.js",
"./plain": "./dist/index-plain.js",
"./try-styled": "./dist/index-try-styled.js",
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"plain": [
"./dist/index-plain.d.ts"
],
"try-styled": [
"./dist/index-try-styled.d.ts"
]
}
},
"types": "./dist/index-default.d.ts",
"type": "module",
"sideEffects": false,
"engines": {
"node": "^14.13.1 || >=16.0.0"
},
"files": [
"dist"
],
"scripts": {
"install:ajv-7": "cd ajv-versions/v-7 && yarn",
"install:ajv-8": "cd ajv-versions/v-8 && yarn",
"install:ajv:versions": "yarn install:ajv-7 && yarn install:ajv-8",
"build": "rimraf dist && tsc -p tsconfig.prod.json",
"test:all": "NODE_OPTIONS=--experimental-vm-modules FORCE_COLOR=0 jest",
"get:snapshot:sha": "shasum lib/__snap*/*.snap ajv-versions/v-*/__snap*/*.snap",
"test": "yarn test:all && yarn get:snapshot:sha",
"make-readme-examples": "ts-node scripts/make-readme-examples.ts",
"prepack": "yarn build && yarn test",
"cz": "git-cz"
},
"repository": {
"type": "git",
"url": "https://github.com/grantila/awesome-ajv-errors"
},
"keywords": [
"awesome",
"ajv",
"errors",
"pretty"
],
"workspaces": [
"ajv-versions/*",
"webpack"
],
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/hapi__joi": "^17.1.9",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"ajv": "^6.11.0",
"cz-conventional-changelog": "^3.3.0",
"jest": "^29.4.1",
"rimraf": "^4.1.2",
"temp-write": "^5.0.0",
"ts-jest-resolver": "^2.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"awesome-code-frame": "^1.1.0",
"chalk": "^5.2.0",
"jsonpointer": "^5.0.1",
"jsonpos": "^4.1.2",
"leven": "^4.0.0",
"terminal-link": "^3.0.0"
},
"peerDependencies": {
"ajv": "^6 || ^7 || ^8"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "[email protected]"
}