-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
70 lines (70 loc) · 1.82 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
68
69
70
{
"name": "generator-bangular",
"version": "1.0.0",
"description": "Generate and serve your project in a blink of an eye",
"license": "BSD",
"homepage": "https://github.com/42Zavattas/generator-bangular",
"bugs": "https://github.com/42Zavattas/generator-bangular/issues",
"repository": {
"type": "git",
"url": "git://github.com/42Zavattas/generator-bangular.git"
},
"contributors": [
{
"name": "Meriadec Pillet",
"url": "https://github.com/meriadec"
},
{
"name": "Balthazar Gronon",
"url": "https://github.com/Apercu"
}
],
"keywords": [
"fullstack",
"gulp",
"yeoman-generator",
"bangular-generator",
"bangular",
"angular",
"server",
"sockets",
"passport",
"lightweight",
"blazingfast",
"express",
"zavattas"
],
"dependencies": {
"async": "^1.5.2",
"chalk": "^1.1.1",
"glob": "^6.0.4",
"lodash": "^4.0.0",
"mkdirp": "^0.5.1",
"underscore.string": "^3.2.2",
"yeoman-generator": "^0.22.3"
},
"devDependencies": {
"chai": "*",
"conventional-changelog": "^0.5.3",
"coveralls": "^2.11.6",
"istanbul": "^0.4.2",
"jscs": "^2.8.0",
"jscs-stylish": "^0.3.1",
"jshint": "^2.9.1-rc3",
"jshint-stylish": "^2.1.0",
"mocha": "*",
"spritesmith-cli": "^1.1.1"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "istanbul cover _mocha",
"cover": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"jshint": "jshint --reporter=node_modules/jshint-stylish **/index.js test/*.js",
"jscs": "jscs --reporter=node_modules/jscs-stylish **/index.js test/*.js",
"control": "npm run jshint && npm run jscs",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -w",
"sprites": "spritesmith"
}
}