-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 915 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
{
"name": "FormBuilder",
"version": "0.0.1",
"description": "convert JSON schemas to forms",
"main": "index.js",
"scripts": {
"test": "mocha -R spec $(find test | grep .test.js)"
},
"repository": {
"type": "git",
"url": "git://github.com/arieljake/FormBuilder.git"
},
"keywords": [
"form",
"json",
"schema"
],
"author": "Ariel Jakobovits",
"license": "ISC",
"bugs": {
"url": "https://github.com/arieljake/FormBuilder/issues"
},
"homepage": "https://github.com/arieljake/FormBuilder",
"dependencies": {
"eventemitter": "^0.3.3",
"async": "^0.9.0"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-traceur": "^0.1.2",
"grunt-contrib-watch": "^0.6.1",
"grunt-newer": "^0.7.0",
"grunt-contrib-copy": "^0.5.0",
"grunt-text-replace": "^0.3.11",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-sass": "^0.7.3"
}
}