-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 938 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": "generator-angular-schema-form-add-on",
"version": "0.1.3",
"description": "A Yeoman generator for Angular Schema Form Add-Ons.",
"main": "app/index.js",
"files": [
"app"
],
"keywords": [
"yeoman-generator"
],
"scripts": {
"compile": "babel index.js --out-file app/index.js --source-maps",
"watch": "babel index.js --watch --out-file app/index.js --source-maps",
"prepublish": "npm run compile"
},
"babel": {
"presets": [
"es2015"
]
},
"repository": "json-schema-form/generator-angular-schema-form-add-on",
"dependencies": {
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"camelcase": "^1.2.1",
"chalk": "^1.1.1",
"fs-promise": "^0.3.1",
"fs-readdir-recursive": "^0.1.2",
"q": "^1.4.1",
"yeoman-generator": "^0.20.3",
"yosay": "^1.1.0"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.5.1"
}
}