-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 883 Bytes
/
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
{
"name": "generator-es6-module",
"version": "3.0.0",
"description": "Yeoman generator for es6 based node.js modules using babel-runtime.",
"main": "app/index.js",
"repository": "https://github.com/tlivings/generator-es6-module",
"author": {
"name": "Trevor Livingston",
"email": "[email protected]",
"url": "https://github.com/tlivings"
},
"files": [
"app"
],
"keywords": [
"yeoman-generator",
"es6",
"yeoman",
"yo",
"generator"
],
"dependencies": {
"async": "^1.5.0",
"chalk": "~0.4.0",
"yeoman-generator": "~0.16.0"
},
"devDependencies": {
"tape": "^3.5.0",
"istanbul": "~0.3.6",
"jshint": "^2.6.0"
},
"peerDependencies": {
"yo": "^1.0.0"
},
"scripts": {
"test": "tape test/*.js",
"cover": "istanbul cover tape -- test/*.js",
"lint": "jshint -c .jshintrc lib/"
}
}