forked from atlassian/better-ajv-errors
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 2 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
{
"name": "@stoplight/better-ajv-errors",
"version": "1.0.1",
"description": "JSON Schema validation for Human",
"repository": "stoplightio/better-ajv-errors",
"type": "commonjs",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"exports": {
"types": "./typings.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"keywords": [
"json-schema",
"ajv",
"ajv-errors"
],
"sideEffects": false,
"author": "Rifat Nabi <[email protected]>",
"maintainers": [
"Rifat Nabi <[email protected]>",
"Dmitrii Sorin <[email protected]>",
"Tong Li"
],
"engines": {
"node": "^12.20 || >= 14.13"
},
"license": "Apache-2.0",
"typings": "typings.d.ts",
"files": [
"dist",
"index.js",
"typings.d.ts"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "rollup -c",
"postbuild": "cp dist/index.mjs dist/index.esm.js && node --input-type=commonjs -e \"require('./dist/index.js')\" && node --input-type=module -e \"import './dist/index.mjs'\"",
"prepublishOnly": "yarn test && yarn build",
"format": "prettier --write src/*.js src/**/*.js",
"test": "jest",
"test-ci": "jest --coverage --colors"
},
"dependencies": {
"jsonpointer": "^5.0.0",
"leven": "^3.1.0"
},
"devDependencies": {
"@babel/core": "7.6.0",
"@babel/preset-env": "^7.10.2",
"ajv": "^8.1.0",
"babel-jest": "^24.9.0",
"dotenv": "^8.1.0",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.2.0",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-prettier": "^3.1.0",
"flow-bin": "^0.107.0",
"husky": "^3.0.5",
"jest": "^24.9.0",
"jest-fixtures": "^0.6.0",
"prettier": "^2.0.5",
"pretty-quick": "^1.6.0",
"rollup": "^2.59.0"
},
"peerDependencies": {
"ajv": ">=8"
},
"jest": {
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.js"
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/npm"
]
}
}