forked from Swiip/generator-gulp-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.48 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.48 KB
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
{
"name": "generator-gulp-angular",
"version": "0.6.2",
"description": "Yeoman generator for AngularJS with GulpJS",
"keywords": "yeoman-generator, angular, gulp",
"license": "MIT",
"author": "Matthieu Lux <matthieu.lux@gmail.com> (https://github.com/Swiip)",
"contributors": [
"Matthieu Lux <matthieu.lux@gmail.com> (https://github.com/Swiip)",
"Mehdy Dara <mdara@eleven-labs.com> (http://eleven-labs.com/)"
],
"files": [
"app"
],
"main": "app/index.js",
"repository": "Swiip/generator-gulp-angular",
"scripts": {
"pretest": "cd test/deps && npm install && bower install",
"test": "mocha -g protractor -i",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha -- -g protractor -i && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha -- ./test/*.js"
},
"dependencies": {
"async": "~0.8.0",
"chalk": "~0.4.0",
"q": "~1.0.1",
"yeoman-generator": "~0.17.0",
"yosay": "^0.3.0"
},
"devDependencies": {
"bower": "~1.3.3",
"chai": "~1.9.1",
"chai-as-promised": "~4.1.1",
"colors": "~0.6.2",
"coveralls": "~2.11.0",
"cross-spawn": "~0.2.3",
"fixture-stdout": "^0.2.1",
"gulp-less": "^1.3.3",
"gulp-sass": "^0.7.3",
"istanbul": "~0.3.0",
"lodash": "~2.4.1",
"mocha": "~1.21.0",
"mocha-lcov-reporter": "0.0.1"
},
"peerDependencies": {
"yo": ">=1.0.0"
},
"engines": {
"node": ">=0.10.0"
}
}