This repository was archived by the owner on Feb 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
75 lines (75 loc) · 1.7 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": "fountain-generator",
"version": "1.0.0",
"description": "Base generator for all Yeoman Fountain generators",
"homepage": "http://fountainjs.io/",
"repository": "fountainjs/fountain-generator",
"author": "The Fountain Team",
"contributors": [
"Matthieu Lux <matthieu.lux@gmail.com> (http://swiip.github.io/)",
"Mehdy Dara <mdara@eleven-labs.com> (http://eleven-labs.com/)",
"Micael Mbagira <micael.mbagira@icloud.com> (http://micaelmbagira.github.io)"
],
"main": "index.js",
"keywords": [
"yeoman",
"generator",
"gulp",
"gulpfile",
"fountain",
"cli"
],
"engines": {
"node": ">=4.0"
},
"dependencies": {
"chalk": "^1.1.3",
"ejs": "^2.5.6",
"falafel": "^2.0.0",
"lodash": "^4.17.4",
"mem-fs": "^1.1.2",
"mem-fs-editor": "^3.0.2",
"minimatch": "^3.0.3",
"yeoman-generator": "^1.1.0"
},
"devDependencies": {
"ava": "^0.18.2",
"babel-eslint": "^7.1.1",
"cartesian-product": "^2.1.2",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"chai-things": "^0.2.0",
"cross-spawn": "^5.0.1",
"eslint": "^3.15.0",
"eslint-config-xo-space": "^0.15.0",
"eslint-plugin-babel": "^4.0.1",
"fs-extra": "^2.0.0",
"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"
},
"ava": {
"files": [
"test/lib/**/*.js"
]
},
"nyc": {
"include": [
"lib/*.js"
],
"exclude": [
"lib/techs.json",
"lib/test-utils.js"
]
},
"scripts": {
"test": "gulp",
"prepublish": "gulp prepublish"
},
"license": "MIT",
"eslintConfig": {
"extends": "xo-space/esnext"
}
}