forked from JasonGiedymin/generator-ansible-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 874 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
{
"name": "generator-ansible-ci",
"version": "0.0.0",
"description": "Yeoman generator for adding Ansible CI test files and Docker to an existing playbook.",
"license": "MIT",
"main": "app/index.js",
"repository": {
"type" : "git",
"url" : "http://github.com/Amuxbit/generator-ansible-ci"
},
"author": {
"name": "Jason Giedymin",
"email": "[email protected]",
"url": "https://github.com/JasonGiedymin"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"files": [
"app",
"scaffold"
],
"keywords": [
"yeoman-generator",
"ansible",
"travis-ci"
],
"dependencies": {
"yeoman-generator": "^0.18.0",
"chalk": "^0.5.0",
"yosay": "^0.3.0"
},
"devDependencies": {
"mocha": "*"
},
"peerDependencies": {
"yo": ">=1.0.0"
},
"license" : "Apache-2.0"
}