forked from FountainJS/generator-fountain-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.36 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
{
"name": "generator-fountain-webpack",
"version": "0.7.2",
"description": "Yeoman Fountain generator which handle the Webpack config",
"homepage": "http://fountainjs.io/",
"repository": "fountainjs/generator-fountain-webpack",
"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",
"gulp",
"gulpfile",
"fountain",
"cli"
],
"dependencies": {
"fountain-generator": "^0.7.2"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-eslint": "^6.0.2",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"cross-spawn": "^4.0.0",
"eslint": "^3.2.2",
"eslint-config-xo-space": "^0.12.0",
"eslint-plugin-babel": "^3.2.0",
"gulp": "gulpjs/gulp#4.0",
"gulp-eslint": "^2.0.0",
"gulp-exclude-gitignore": "^1.0.0",
"gulp-nsp": "^2.4.0",
"nyc": "^6.6.1"
},
"nyc": {
"include": [
"generators/**/*.js"
],
"exclude": [
"generators/**/templates/**"
]
},
"scripts": {
"test": "gulp",
"prepublish": "gulp prepublish"
},
"license": "MIT",
"eslintConfig": {
"extends": "xo-space/esnext"
}
}