This repository has been archived by the owner on Feb 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
67 lines (67 loc) · 1.79 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
{
"name": "generator-fountain-webapp",
"version": "1.0.0",
"description": "Yeoman Fountain generator to scaffold a webapp with React or Angular written in ES6 (Babel), TypeScript through Webpack or SystemJS including tools Gulp 4, ESLint, Browsersync and Karma",
"homepage": "http://fountainjs.io/",
"repository": "fountainjs/generator-fountain-webapp",
"author": "The Fountain Team",
"contributors": [
"Matthieu Lux <[email protected]> (http://swiip.github.io/)",
"Mehdy Dara <[email protected]> (http://eleven-labs.com/)",
"Micael Mbagira <[email protected]> (http://micaelmbagira.github.io)"
],
"main": "index.js",
"keywords": [
"yeoman-generator",
"fountain-generator",
"yeoman",
"generator",
"gulp",
"gulpfile",
"fountain",
"cli"
],
"engines": {
"node": ">=4.0"
},
"dependencies": {
"chalk": "^1.1.3",
"fountain-generator": "^1.0.0",
"generator-fountain-angular1": "^1.0.0",
"generator-fountain-angular2": "^1.0.0",
"generator-fountain-react": "^1.0.0",
"generator-fountain-vue": "^1.0.0",
"yosay": "^2.0.0"
},
"devDependencies": {
"ava": "^0.18.2",
"babel-eslint": "^7.1.1",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"cross-spawn": "^5.0.1",
"eslint": "^3.15.0",
"eslint-config-xo-space": "^0.15.0",
"eslint-plugin-babel": "^4.0.1",
"gulp": "gulpjs/gulp#4.0",
"gulp-eslint": "^3.0.1",
"gulp-exclude-gitignore": "^1.1.1",
"gulp-nsp": "^2.4.2",
"nyc": "^10.1.2"
},
"nyc": {
"include": [
"generators/**/*.js"
],
"exclude": [
"generators/**/templates/**"
]
},
"scripts": {
"test": "gulp",
"prepublish": "gulp prepublish"
},
"license": "MIT",
"eslintConfig": {
"extends": "xo-space/esnext"
}
}