forked from tlivings/generator-es6-module
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.21 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.21 KB
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
{
"name": "generator-es6-mocha-npm-module",
"version": "1.0.0",
"description": "Yeoman generator for ES6-based NPM modules using core-js and Mocha.",
"main": "app/index.js",
"repository": "https://github.com/photokandyStudios/generator-es6-mocha-npm-module",
"author": {
"name": "Trevor Livingston",
"email": "tlivings@gmail.com",
"url": "https://github.com/tlivings"
},
"contributors": [
{"name": "Kerri Shotts",
"email": "kerrishotts@gmail.com",
"url": "http://kerrishotts.github.io"},
{"name": "Trevor Livingston",
"email": "tlivings@gmail.com",
"url": "https://github.com/tlivings"
}
],
"files": [
"app"
],
"keywords": [
"yeoman-generator",
"es6",
"mocha",
"module",
"babel",
"core-js",
"yeoman",
"yo",
"generator"
],
"dependencies": {
"yeoman-generator": "~0.16.0",
"chalk": "~0.4.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/"
}
}