forked from InfinitePress/generator-angular-package
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1008 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1008 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
42
43
44
45
46
{
"name": "generator-angular-package",
"version": "0.4.6",
"description": "Yeoman generator to create an AngularJS module with partial generators for directive, service and controller",
"license": "MIT",
"main": "app/index.js",
"repository": "InfinitePress/generator-angular-package",
"author": {
"name": "InfinitePress",
"email": "infinitepress.info@gmail.com",
"url": "https://github.com/infinitepress"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"keywords": [
"yeoman-generator",
"angular",
"angularjs",
"module",
"generator",
"code",
"directive",
"service",
"controller"
],
"dependencies": {
"chalk": "^0.5.1",
"lodash": "^2.4.1",
"yeoman-generator": "^0.17.0",
"yosay": "^0.3.0"
},
"devDependencies": {
"mocha": "*",
"assert": "~1.1.1",
"async": "~0.9.0",
"fs-extra": "~0.10.0",
"temp": "~0.8.0"
},
"peerDependencies": {
"yo": ">=1.0.0"
}
}