forked from shawnhilgart/jsonschema2html
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 836 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 836 Bytes
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
{
"name": "jsonschema2html",
"preferGlobal": false,
"version": "0.1.9",
"author": "Shawn Hilgart <shawn@wcst.com>",
"description": "Javascript Utility for rendering html forms based on a JSON Schema.",
"repository": {
"type": "git",
"url": "https://github.com/shawnhilgart/jsonschema2html.git"
},
"private":false,
"test": "make test",
"contributors": [
{
"name": "Shawn Hilgart",
"email": "shawn@wcst.com"
}
],
"main": "./lib/schema2html",
"keywords": [],
"dependencies" : {
"handlebars":"~2.0.0",
"async":"*",
"lodash":"*",
"request":"*"
},
"analyze": false,
"devDependencies": {
"mocha":"*",
"benchmark":"*"
},
"bundledDependencies": [
],
"license": "MIT",
"engines": {
"node": ">=0.8"
},
"scripts":{
"test":"mocha"
}
}