forked from dustinspecker/generator-ng-poly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.42 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "generator-ng-poly",
"version": "0.4.8",
"description": "Yeoman generator for AngularJS apps with optional Polymer support",
"license": "MIT",
"main": "app/index.js",
"repository": "dustinspecker/generator-ng-poly",
"author": {
"name": "Dustin Specker",
"email": "[email protected]",
"url": "https://github.com/dustinspecker"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"files": [
"app",
"constant",
"controller",
"directive",
"element",
"factory",
"filter",
"genBase",
"module",
"provider",
"route",
"service",
"utils",
"value",
"view"
],
"keywords": [
"yeoman-generator",
"angular",
"gulp",
"jasmine",
"mocha",
"protractor",
"polymer"
],
"dependencies": {
"chalk": "^0.5.1",
"class-extend": "^0.1.1",
"findup-sync": "^0.1.3",
"lodash": "^2.4.1",
"underscore.string": "^2.3.3",
"update-notifier": "^0.2.0",
"yeoman-generator": "~0.17.2",
"yosay": "^1.0.0"
},
"devDependencies": {
"a": "^0.4.6",
"coveralls": "^2.11.1",
"istanbul": "^0.3.0",
"mocha": "^1.20.1",
"proxyquire": "^1.0.1",
"sinon": "^1.10.3"
},
"peerDependencies": {
"yo": ">=1.2.1"
}
}