-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.39 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
{
"name": "ansibrest",
"author": "muddydixon <muddydixon@gmail.com>",
"readmetext": "README.md",
"version": "1.1.2",
"description": "RESTify Ansible playbook",
"main": "ansibrest.js",
"bin": {
"ansibrest": "./ansibrest.js"
},
"license": "Apache-2.0",
"scripts": {
"start": "node ansibrest.js",
"server:watch": "DEBUG=${DEBUG},${DEBUG}:* node-dev ansibrest.js",
"jsx:build": "browserify -o public/js/web.js -t [ babelify --presets [ es2015 react ] ] jsx/web.js",
"jsx:watch": "watchify -d -v -o public/js/web.js -t [ babelify --presets [ es2015 react ] ] jsx/web.js"
},
"keywords": [
"ansible",
"rest",
"api server"
],
"dependencies": {
"body-parser": "^1.15.0",
"bootstrap": "^3.3.6",
"commander": "^2.9.0",
"cookie-parser": "^1.4.1",
"create-error": "^0.3.1",
"debug": "^2.2.0",
"express": "^4.13.4",
"font-awesome": "^4.5.0",
"fs-extra": "^1.0.0",
"js-yaml": "^3.5.3",
"log4js": "^0.6.31",
"node-ansible": "^0.5.5",
"serve-static": "^1.10.2",
"socket.io": "^1.5.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"flux": "^2.1.1",
"node-dev": "^3.0.0",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-router": "^2.0.0",
"superagent": "^1.7.2",
"watchify": "^3.7.0"
}
}