forked from atlassian/better-ajv-errors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 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
{
"name": "better-ajv-errors",
"version": "0.6.7-graphext03",
"description": "JSON Schema validation for Human",
"repository": {
"type": "git",
"url": "git+https://github.com/graphext/better-ajv-errors.git"
},
"main": "dist/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",
"files": [
"dist/index.js"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "yarn webpack",
"prerelease": "yarn build",
"format": "prettier --write src/*.js src/**/*.js .changeset/*.js",
"test": "jest",
"test-ci": "jest --coverage --colors",
"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"
},
"dependencies": {
"core-js": "^3.2.1",
"json-to-ast": "^2.0.3",
"jsonpointer": "^4.0.1",
"leven": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "7.6.0",
"@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",
"@changesets/cli": "^1.3.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"babel-plugin-add-module-exports": "^1.0.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": "^1.14.2",
"pretty-quick": "^1.6.0",
"svg-term-cli": "^2.1.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"peerDependencies": {
"ajv": "4.11.8 - 6"
},
"jest": {
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.js"
]
}
}