forked from atlassian/better-ajv-errors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.02 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
{
"name": "better-ajv-errors",
"version": "0.6.2",
"description": "JSON Schema validation for Human",
"repository": "atlassian/better-ajv-errors",
"main": "index.js",
"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",
"typings": "typings.d.ts",
"files": [
"lib",
"index.js",
"typings.d.ts"
],
"dependencies": {
"@babel/code-frame": "^7.0.0",
"@babel/runtime": "^7.0.0",
"chalk": "^2.4.1",
"core-js": "^2.5.7",
"json-to-ast": "^2.0.3",
"jsonpointer": "^4.0.1",
"leven": "^2.1.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "7.0.1",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-plugin-add-module-exports": "^1.0.0",
"codecov": "^3.1.0",
"eslint": "^5.5.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-jest": "^21.22.0",
"flow-bin": "^0.80.0",
"husky": "^0.14.3",
"jest": "^23.6.0",
"jest-fixtures": "^0.6.0",
"prettier": "^1.14.2",
"pretty-quick": "^1.6.0"
},
"peerDependencies": {
"ajv": "4.11.8 - 6"
},
"scripts": {
"clean": "rm -rf lib",
"build": "yarn run clean && yarn build:modern && yarn build:legacy",
"build:modern": "BABEL_ENV=modern babel src -d lib/modern/",
"build:legacy": "BABEL_ENV=legacy babel src -d lib/legacy",
"prepare": "yarn build",
"format": "prettier --write src/*.js src/**/*.js",
"test": "jest",
"test-ci": "jest --coverage && codecov",
"precommit": "pretty-quick --staged"
},
"jest": {
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.js"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
}
}