-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
42 lines (42 loc) · 831 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
41
42
{
"name": "generator-angularjs-library",
"version": "3.3.1",
"description": "Yeoman generator to create an AngularJS component library",
"license": "MIT",
"main": "app/index.js",
"repository": "jvandemo/generator-angularjs-library",
"author": {
"name": "Jurgen Van de Moere",
"email": "[email protected]",
"url": "https://github.com/jvandemo"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"files": [
"app"
],
"keywords": [
"yeoman-generator",
"angular",
"angularjs",
"library",
"generator",
"code"
],
"dependencies": {
"chalk": "^0.5.1",
"lodash": "^2.4.1",
"yeoman-generator": "^0.17.0",
"yosay": "^0.3.0"
},
"devDependencies": {
"mocha": "*"
},
"peerDependencies": {
"yo": ">=1.0.0"
}
}