-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 941 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
{
"name": "@yp/json2schema",
"version": "1.0.1",
"description": "Transform JSON Object to JSON Schema Version 7",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/njueyupeng/json2schema.git"
},
"keywords": [
"json2schema",
"JSON",
"JSON to Schema",
"Schema",
"jsonSchema"
],
"author": "yupeng",
"license": "MIT",
"bugs": {
"url": "https://github.com/njueyupeng/json2schema/issues"
},
"homepage": "https://github.com/njueyupeng/json2schema#readme",
"dependencies": {
"lodash.isboolean": "^3.0.3",
"lodash.isempty": "^4.4.0",
"lodash.isinteger": "^4.0.4",
"lodash.isnull": "^3.0.0",
"lodash.isnumber": "^3.0.3",
"lodash.isobject": "^3.0.2",
"lodash.isstring": "^4.0.1",
"strip-json-comments": "^3.0.1"
},
"devDependencies": {
"ajv": "^6.5.3",
"mocha": "^5.2.0"
}
}