-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
package.json
117 lines (117 loc) · 3.56 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "generator-angular-fullstack",
"version": "5.0.0-rc.4",
"description": "Yeoman generator for creating MEAN stack applications, using MongoDB, Express, AngularJS, and Node",
"keywords": [
"yeoman-generator",
"mean",
"mongodb",
"angularjs",
"express",
"scaffold",
"fullstack",
"framework",
"component",
"front-end",
"app"
],
"homepage": "https://github.com/angular-fullstack/generator-angular-fullstack",
"bugs": "https://github.com/angular-fullstack/generator-angular-fullstack/issues",
"author": "Andrew Koroluk <[email protected]> (http://andrewk.me/)",
"contributors": [
"Tyler Henkel (http://tylerhenkel.com/)",
"Cody Mize <[email protected]> (http://codymize.com/)",
"Brian Ford <[email protected]> (http://briantford.com/)",
"Pascal Hartig <[email protected]> (http://passy.me/)",
"Eddie Monge (http://eddiemonge.com)",
"Sindre Sorhus <[email protected]> (https://twitter.com/sindresorhus)"
],
"repository": {
"type": "git",
"url": "git://github.com/angular-fullstack/generator-angular-fullstack.git"
},
"scripts": {
"pre-test": "gulp updateFixtures:test && gulp installFixtures && gulp build",
"test": "mocha --require should --require @babel/register --require ./mocha.conf --reporter spec --timeout 120000 test/pre.test.js test/*.test.js",
"prepublish": "gulp build",
"build": "gulp build"
},
"dependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-syntax-flow": "^7.2.0",
"@babel/plugin-transform-flow-strip-types": "^7.6.3",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.6.2",
"babel-eslint": "^10.0.3",
"bluebird": "^3.4.5",
"chalk": "^2.1.0",
"eslint": "^6.6.0",
"generator-angular-fullstack-component": "~1.0.1",
"glob": "^7.0.5",
"gulp-eslint": "^6.0.0",
"gulp-filter": "^6.0.0",
"gulp-html2jade": "^1.1.2",
"gulp-rename": "^1.2.2",
"gulp-tap": "^1.0.1",
"insight": "~0.10.1",
"jscodeshift": "^0.3.30",
"lodash": "^4.17.15",
"semver": "^5.1.0",
"underscore.string": "^3.1.1",
"yeoman-generator": "2.0.4",
"yeoman-welcome": "^1.0.1"
},
"devDependencies": {
"@types/gulp": "^4.0.6",
"@types/gulp-babel": "^6.1.29",
"@types/gulp-gh-pages": "0.0.32",
"@types/gulp-if": "0.0.33",
"@types/gulp-mocha": "0.0.32",
"@types/gulp-plumber": "0.0.32",
"@types/gulp-util": "^3.0.34",
"@types/lazypipe": "0.0.31",
"@types/merge-stream": "^1.1.2",
"@types/node": "^12.11.0",
"@types/shelljs": "^0.8.5",
"chai": "^4.1.2",
"david": "^11.0.0",
"del": "^4.1.1",
"grunt": "^1.0.1",
"grunt-build-control": "^0.7.0",
"grunt-david": "~0.7.0",
"grunt-release": "^0.14.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-cli": "^2.2.0",
"gulp-conventional-changelog": "^2.0.23",
"gulp-gh-pages": "^0.5.4",
"gulp-if": "^3.0.0",
"gulp-mocha": "^6.0.0",
"gulp-plumber": "^1.1.0",
"gulp-util": "^3.0.7",
"jit-grunt": "~0.10.0",
"lazypipe": "^1.0.1",
"mem-fs-editor": "4.0.0",
"merge-stream": "^1.0.0",
"minimatch": "^3.0.2",
"mocha": "^5.2.0",
"q": "^1.0.1",
"recursive-readdir": "^2.0.0",
"run-sequence": "^2.1.0",
"shelljs": "^0.8.2",
"should": "^12.0.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.4",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^1.7.2"
},
"peerDependencies": {
"yo": ">= 1.7.1"
},
"engines": {
"node": ">= 10",
"npm": ">= 6"
},
"license": "BSD-2-Clause"
}