-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 2.38 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
76
77
78
79
{
"name": "generator-mcfly-ng2",
"version": "1.1.6",
"description": "A yeoman generator for scaffolding an app using angular2 and webpack",
"homepage": "https://github.com/mcfly-io/generator-mcfly-ng2",
"repository": {
"type": "git",
"url": "git://github.com/mcfly-io/generator-mcfly-ng2"
},
"engines": {
"node": ">= 4.2.1 <= 5"
},
"scripts": {
"eslint": "eslint .",
"lint": "npm run eslint",
"mocha": "istanbul cover --root ./generators --include-all-sources -x **/templates/** --dir ./coverage/mocha --report text --report text-summary --report lcov --print none _mocha -- test/mocha/**/*.spec.js --reporter spec --timeout 10000",
"mocha:watch": "mocha test/mocha/**/*.spec.js -R nyan -w --timeout 10000",
"pretest": "npm run eslint",
"test": "npm run mocha",
"release": "mcfly-semantic-release"
},
"author": {
"name": "Avi Haiat",
"email": "[email protected]",
"url": "https://github.com/thaiat"
},
"files": [
"generators",
"libs",
".jsbeautifyrc"
],
"main": "generators/app/index.js",
"preferGlobal": true,
"keywords": [
"yeoman-generator",
"ng2",
"webpack",
"angular2",
"generator",
"yeoman",
"starter",
"boilerplate",
"scaffold"
],
"license": "MIT",
"dependencies": {
"chalk": "^1.1.1",
"gulp-filter": "^4.0.0",
"gulp-tap": "^0.1.3",
"js-beautify": "beautify-web/js-beautify",
"lodash": "4.15.0",
"mkdirp": "^0.5.1",
"repeating": "^2.0.0",
"string-length": "^1.0.1",
"strip-json-comments": "^2.0.1",
"underscore.string": "^3.3.4",
"update-notifier": "^1.0.2",
"yeoman-generator": "^0.22.4",
"yosay": "^1.1.1"
},
"devDependencies": {
"bluebird": "^3.3.4",
"chai": "^3.5.0",
"chalk": "1.1.3",
"coveralls": "^2.11.9",
"del": "^2.2.0",
"eslint": "^3.5.0",
"eslint-plugin-nodeca": "^1.0.3",
"istanbul": "^0.4.2",
"mcfly-semantic-release": "^1.0.14",
"mocha": "^3.0.2",
"node-jsxml": "^0.8.0",
"require-dir": "0.3.0",
"run-sequence": "^1.1.5",
"yargs": "^5.0.0",
"yeoman-assert": "^2.1.2",
"yeoman-test": "^1.1.0"
}
}