-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.15 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "generator-hirsch",
"version": "1.0.2",
"description": "Yeoman generator for large module-based AngularJS applications with the option to use typescript",
"license": "MIT",
"main": "app/index.js",
"repository": "[email protected]/generator-hirsch",
"author": {
"name": "Gery Hirschfeld",
"email": "[email protected]",
"url": "https://github.com/hirsch88"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"files": [
"app",
"service",
"constant",
"filter",
"module",
"view",
"directive",
"templates",
"LICENSE",
"util.js",
"script-base.js",
"CHANGELOG.md",
"README.md"
],
"keywords": [
"yeoman-generator"
],
"dependencies": {
"chalk": "^0.5.0",
"glob": "^4.4.0",
"lodash": "^3.9.3",
"main-bower-files": "^2.6.2",
"path": "^0.11.14",
"player": "^0.5.0",
"require-dir": "^0.3.0",
"underscore.string": "^3.0.3",
"wiredep": "^2.2.2",
"yeoman-generator": "^0.18.0",
"yosay": "^0.3.0"
},
"devDependencies": {
"mocha": "*"
},
"peerDependencies": {
"yo": ">=1.0.0"
}
}