forked from shaharke/node-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 792 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 792 Bytes
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
{
"name": "node-ansible",
"version": "0.2.1",
"description": "Programmatic interface in Node.js for executing Ansible ad-hoc commands and playbooks",
"main": "index.js",
"scripts": {
"test": "mocha test/**/*.js --reporter spec"
},
"repository": {
"type": "git",
"url": "git://github.com/shaharke/node-ansible.git"
},
"keywords": [
"ansible",
"api",
"programmatic"
],
"author": "Shahar Kedar",
"license": "MIT",
"bugs": {
"url": "https://github.com/shaharke/node-ansible/issues"
},
"devDependencies": {
"mocha": "~1.17.0",
"chai": "~1.8.1",
"sinon": "~1.7.3",
"chai-as-promised": "~4.1.0",
"sinon-chai": "~2.4.0"
},
"dependencies": {
"shelljs": "~0.2.6",
"underscore": "~1.5.2",
"q": "~1.0.0"
}
}