-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 988 Bytes
/
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
{
"name": "json-schema-model-builder",
"version": "0.2.3",
"main": "src/index.js",
"description": "Infrastructure components to easily build models directly from JSON Schema",
"license": "MIT",
"author": "Kristian Mandrup <kmandrup@gmail.com>",
"homepage": "https://github.com/kristianmandrup/json-schema-model-builder#readme",
"repository": {
"type": "git",
"url": "https://github.com/kristianmandrup/json-schema-model-builder.git"
},
"bugs": {
"url": "https://github.com/kristianmandrup/json-schema-model-builder/issues",
"email": "kmandrup@gmail.com"
},
"devDependencies": {
"jest": "^23.0.0",
"typeorm": "^0.2.8"
},
"keywords": [
"json",
"json-schema",
"schema",
"graphql",
"types",
"transforms"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"camelcase": "^5.0.0",
"dot-prop": "^4.2.0",
"graph.js": "^1.21.1",
"object-hash": "^1.3.0"
}
}