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 1
/
package.json
63 lines (63 loc) · 1.52 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
{
"name": "generator-fountain-tslint",
"version": "1.0.0",
"description": "Yeoman Fountain generator which handle the TSLint config",
"homepage": "http://fountainjs.io/",
"repository": "fountainjs/generator-fountain-tslint",
"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",
"tslint",
"typescript"
],
"dependencies": {
"fountain-generator": "^1.0.0",
"lodash": "^4.17.4"
},
"nyc": {
"include": [
"generators/**/*.js"
],
"exclude": [
"generators/**/templates/**"
]
},
"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"
},
"scripts": {
"test": "gulp",
"prepublish": "gulp prepublish"
},
"eslintConfig": {
"extends": "xo-space/esnext",
"rules": {
"func-names": ["error", "as-needed"],
"quote-props": ["error", "consistent"]
}
},
"license": "MIT"
}