-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.35 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
64
65
{
"name": "radiian",
"version": "2.0.0",
"description": "Radiian generates an Ansible playbook for immutable infrastructure with AWS.",
"bin": "lib/radiian.js",
"main": "lib/radiian.js",
"scripts": {
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/radify/radiian.git"
},
"keywords": [
"ansible",
"AWS",
"immutable",
"infrastructure",
"devops",
"server",
"provisioning"
],
"contributors": [
{
"name": "John F. Mercer",
"email": "[email protected]",
"url": "http://radify.io"
},
{
"name": "Gavin Davies",
"email": "[email protected]",
"url": "http://radify.io"
}
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/radify/radiian/issues"
},
"files": [
"lib"
],
"engines": {
"node": ">=0.10.38"
},
"homepage": "https://github.com/radify/radiian#readme",
"devDependencies": {
"gulp": "^3.9.0",
"gulp-istanbul": "^0.10.3",
"gulp-jasmine": "^2.2.1",
"gulp-jscs": "^3.0.2",
"gulp-jshint": "^2.0.0",
"gulp-nsp": "^2.3.2",
"jscs": "^2.7.0",
"jshint": "^2.9.1"
},
"dependencies": {
"commander": "^2.9.0",
"inquirer": "^0.11.0",
"mkdirp": "^0.5.1",
"mustache": "^2.2.1",
"openurl": "^1.1.0",
"q": "^1.4.1"
},
"preferGlobal": true
}