-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1018 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
41
42
43
44
45
46
47
{
"name": "generator-goat",
"version": "0.0.3",
"description": "Yeoman generator for web apps (wercker ci + ansible for deploy)",
"license": "MIT",
"main": "app/index.js",
"repository": "wearegoat/generator-goat",
"author": {
"name": "wearegoat",
"email": "hello@wearegoat.com",
"url": "https://github.com/wearegoat"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha",
"test-coveralls": "istanbul cover _mocha && istanbul-coveralls"
},
"files": [
"app",
"ci"
],
"keywords": [
"yeoman-generator",
"ansible",
"wercker"
],
"dependencies": {
"chalk": "^0.5.0",
"istanbul-coveralls": "^1.0.1",
"sinon": "^1.12.2",
"yeoman-environment": "^1.1.0",
"yeoman-generator": "^0.18.0",
"yosay": "^1.0.0"
},
"devDependencies": {
"mocha": "*",
"coveralls": "^2.11.2",
"istanbul": "^0.3.5",
"mocha-lcov-reporter": "0.0.1",
"jscover": "*"
},
"peerDependencies": {
"yo": ">=1.0.0"
}
}