forked from sekur/cloudflash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.4 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
{
"name": "stormflash",
"description": "stormflash provides remote application lifecycle management on any arbitrary endpoint",
"version": "1.3.4",
"author": "Peter K. Lee",
"homepage": "http://stormstack.org",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/stormstack/stormflash.git"
},
"dependencies": {
"async": "0.8.0",
"dirty-query": "0.1.1",
"find-in-path": "0.0.1",
"json-schema": "0.2.0",
"lazy": "1.0.11",
"minimist": "0.1.0",
"node-uuid": "1.3.3",
"request": "2.34.0",
"stormagent": "0.3.4",
"stormbolt": "0.4.3"
},
"devDependencies": {
"coffee-script": ">=1.7.1"
},
"optionalDependencies": {},
"engines": {
"node": ">=0.6.x"
},
"main": "./lib/stormflash",
"config": {
"datadir": "/var/stormflash",
"repeatInterval": 25000,
"logfile": "/var/log/stormflash.log",
"storm": {
"functions": [
"agent.install",
"agent.remove",
"agent.upgrade",
"agent.list",
"agent.start",
"agent.stop",
"agent.reload",
"agent.invoke"
],
"events": [],
"plugins": [
"lib/plugin"
]
}
},
"scripts": {
"prepublish": "mkdir -p lib; coffee -o lib -c src",
"start": "node lib/stormflash"
},
"contributors": [
"Ravi Chunduru",
"Suresh Kumar",
"Geetha Rani",
"Sivaprasath Busa"
]
}