-
Notifications
You must be signed in to change notification settings - Fork 135
/
package.json
44 lines (44 loc) · 970 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
40
41
42
43
44
{
"name": "generate-schema",
"version": "2.6.0",
"author": "Nijiko Yonskai <nijikokun@gmail.com>",
"description": "Effortlessly convert your JSON Object to JSON Schema, Mongoose Schema, or a Generic template for quick documentation / upstart.",
"license": "MIT",
"repository": "Nijikokun/generate-schema",
"homepage": "https://github.com/Nijikokun/generate-schema",
"main": "src/index.js",
"scripts": {
"test": "node_modules/mocha/bin/mocha"
},
"bin": {
"generate-schema": "./bin/generate-schema"
},
"keywords": [
"json",
"schema",
"object",
"convert",
"manipulate",
"traverse",
"types",
"type",
"is",
"generate",
"produce",
"mongoose",
"generic",
"validation",
"bigquery",
"google",
"data",
"datatypes"
],
"dependencies": {
"commander": "^2.9.0",
"type-of-is": "^3.4.0"
},
"devDependencies": {
"mocha": "^3.0.0",
"should": "^10.0.0"
}
}