forked from atlassian/better-ajv-errors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.03 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
{
"name": "better-ajv-errors",
"version": "0.5.1",
"description": "JSON Schema validation for Human",
"repository": "torifat/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-beta.39",
"chalk": "^2.3.1",
"json-to-ast": "^2.0.2",
"jsonpointer": "^4.0.1",
"leven": "^2.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.2.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"codecov": "^3.0.0",
"eslint": "^4.17.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-jest": "^21.8.0",
"flow-bin": "^0.65.0",
"husky": "^0.14.3",
"jest": "^22.2.2",
"jest-fixtures": "^0.6.0",
"lint-staged": "^6.1.0",
"prettier": "^1.7.4"
},
"peerDependencies": {
"ajv": "4.11.8 - 6"
},
"scripts": {
"clean": "rm -rf lib",
"prebuild": "yarn run clean",
"build": "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",
"prepublish": "yarn build",
"format": "prettier --write src/*.js src/**/*.js",
"test": "yarn jest",
"test-ci": "yarn jest --coverage && yarn codecov",
"precommit": "lint-staged"
},
"jest": {
"testMatch": [
"<rootDir>/src/**/__tests__/*.js"
]
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"trailing-comma": "es5"
}
}