forked from kristianmandrup/schema-to-yup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.32 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
{
"name": "schema-to-yup",
"version": "1.10.1",
"source": "src/index.js",
"main": "dist/index.js",
"description": "Build a Yup schema object to validate models from a domain model schema (JSON or GraphQL)",
"license": "MIT",
"author": "Kristian Mandrup <[email protected]>",
"homepage": "https://github.com/kristianmandrup/json-schema-to-yup#readme",
"repository": {
"type": "git",
"url": "https://github.com/kristianmandrup/json-schema-to-yup.git"
},
"bugs": {
"url": "https://github.com/kristianmandrup/json-schema-to-yup/issues",
"email": "[email protected]"
},
"typings": "schema-to-yup.d.ts",
"dependencies": {
"dashify": "^2.0.0",
"uniq": "^1.0.1",
"uppercamelcase": "^3.0.0",
"yup": "^0.29.1"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"jest": "^26.1.0",
"microbundle": "^0.12.3"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"keywords": [
"yup",
"json",
"json-schema",
"schema",
"model",
"validate",
"validation",
"convert",
"build",
"builder",
"graphql",
"typedef"
],
"scripts": {
"build": "rm -rf ./dist && microbundle build -f cjs",
"prepublishOnly": "npm run build",
"test": "npx jest"
}
}