forked from ericmdantas/generator-ng-fullstack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.12 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
71
72
73
74
75
{
"name": "generator-ng-fullstack",
"version": "1.9.20",
"description": "Client, server or fullstack - it's up to you. ng-fullstack gives you the best of the latest: Node, Go, HTTP/2, Angular 1, Angular 2, Vue, Aurelia, Express, Koa, Echo, Gin, MongoDB, Gulp, Babel, Typescript and much more.",
"license": "MIT",
"main": "app/index.js",
"repository": "ericmdantas/generator-ng-fullstack",
"author": {
"name": "Eric Mendes Dantas",
"email": "[email protected]",
"url": "https://github.com/ericmdantas"
},
"engines": {
"node": "stable"
},
"scripts": {
"lint": "eslint _ng/**/*",
"test": "npm run lint && mocha test/ --recursive -R dot --check-leaks --require babel-core/register",
"test-ci": "npm run lint && babel-node ./node_modules/istanbul/lib/cli cover ./node_modules/.bin/_mocha test/ --report lcovonly -- --recursive -R min --check-leaks --require babel-core/register && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"preversion": "npm t",
"prepublish": "npm t"
},
"keywords": [
"yeoman-generator",
"angular-generator",
"next generation",
"ng-fullstack",
"generator-angular-fullstack",
"generator-ng-fullstack",
"generator-iojs-fullstack",
"angular",
"angularjs",
"angular2",
"mongodb",
"generator-fullstack",
"fullstack",
"go",
"http2",
"node-http2",
"go-http2",
"ng2",
"go-generator",
"generator-go",
"generator-http2",
"generator-ng2",
"generator-go-fullstack"
],
"dependencies": {
"chalk": "^1.0.0",
"lodash": "^4.13.1",
"yeoman-generator": "^0.19.2",
"yosay": "^1.2.0"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.7.7",
"babel-core": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.3.0",
"coveralls": "^2.11.8",
"eslint": "^3.0.1",
"gulp": "^3.9.0",
"gulp-rename": "^1.2.2",
"istanbul": "^1.0.0-alpha.2",
"mocha": "*",
"mocha-lcov-reporter": "^1.2.0",
"sinon": "^1.17.1",
"sinon-chai": "^2.8.0"
},
"babel": {
"presets": [
"es2015"
]
}
}