-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
89 lines (89 loc) Β· 2.39 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
{
"name": "better-ajv-errors",
"version": "1.2.0",
"description": "JSON Schema validation for Human",
"repository": "atlassian/better-ajv-errors",
"main": "./lib/cjs/index.js",
"exports": {
".": {
"require": "./lib/cjs/index.js",
"default": "./lib/esm/index.mjs"
}
},
"module": "./lib/esm/index.mjs",
"engines": {
"node": ">= 12.13.0"
},
"keywords": [
"json-schema",
"ajv",
"ajv-errors"
],
"author": "Rifat Nabi <[email protected]>",
"maintainers": [
"Rifat Nabi <[email protected]>",
"Dmitrii Sorin <[email protected]>",
"Tong Li"
],
"license": "Apache-2.0",
"types": "./typings.d.ts",
"files": [
"lib",
"typings.d.ts"
],
"scripts": {
"prebuild": "rm -rf lib",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "node build.js --cjs",
"build:esm": "node build.js",
"prerelease": "npm run build",
"release": "changeset publish",
"format": "prettier --write './src/**/*.js' './.changeset/*.json'",
"lint": "eslint .",
"test": "jest && tsd",
"test-ci": "jest --coverage --colors && tsd",
"prescreenshot": "npm run build:cjs",
"screenshot": "svg-term --command='node screenshot' --out=./media/screenshot.svg --padding=5 --width=80 --height=13 --at=1000 --no-cursor --term iterm2 --profile='deep' --window",
"prepare": "is-ci || husky install",
"dependabot:changeset": "node ./.changeset/create-dependabot-dependabot.js"
},
"dependencies": {
"@babel/code-frame": "^7.16.0",
"@humanwhocodes/momoa": "^2.0.2",
"chalk": "^4.1.2",
"jsonpointer": "^5.0.0",
"leven": "^3.1.0 < 4"
},
"devDependencies": {
"@changesets/cli": "^2.18.1",
"@changesets/write": "^0.1.6",
"ajv": "^8.8.2",
"esbuild": "^0.14.0",
"esbuild-jest": "^0.5.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-prettier": "^4.0.0",
"fast-glob": "^3.2.7",
"flow-bin": "^0.176.0",
"git-format-staged": "^3.0.0",
"husky": "^7.0.0",
"is-ci": "^3.0.1",
"jest": "^28.0.0",
"jest-fixtures": "^0.6.0",
"prettier": "^2.5.0",
"svg-term-cli": "^2.1.1",
"tsd": "^0.20.0"
},
"peerDependencies": {
"ajv": "4.11.8 - 8"
},
"jest": {
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.js"
],
"transform": {
"^.+\\.js$": "esbuild-jest"
}
}
}