-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.21 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
{
"name": "json-yup",
"description": "A JSON schema parser for Yup",
"main": "./dist/index.js",
"scripts": {
"start": "node -r esm ./src/index.js",
"build": "webpack --config webpack.config.js",
"build:stats": "webpack --config webpack.config.js --json > ./dist/stats.json",
"build:analyzer": "webpack-bundle-analyzer ./dist/stats.json",
"lint": "eslint ./src",
"test": "jest",
"test:coverage": "jest --coverage && open http://localhost:8082/coverage/lcov-report/ && python -m SimpleHTTPServer 8082"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shipwell/json-yup.git"
},
"bugs": {
"url": "https://github.com/shipwell/json-yup/issues"
},
"license": "MIT",
"author": "Shipwell",
"files": [
"dist/index.js",
"package.json"
],
"peerDependencies": {
"yup": "^0.27.0"
},
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.1.0-beta.3",
"@semantic-release/github": "^5.2.10",
"@semantic-release/npm": "^5.1.7",
"@semantic-release/release-notes-generator": "^7.1.4",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-env": "^1.7.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.14.2",
"esm": "^3.2.25",
"jest": "^24.9.0",
"lodash": "^4.17.15",
"prettier": "1.16.4",
"prettier-eslint": "^9.0.0",
"request": "^2.88.0",
"webpack": "^4.29.6",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.0",
"yup": "^0.27.0"
},
"version": "1.0.2",
"keywords": [
"yup",
"yup-validation",
"json-schema",
"json-validation",
"json-schema-validation",
"javascript"
]
}