This repository has been archived by the owner on Dec 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
49 lines (49 loc) · 1.68 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
{
"author": "Worldline",
"name": "beekeeper",
"version": "1.0.0",
"scripts": {
"install": "cd admin; npm i; cd ../collector; npm i; cd ../evaluator; npm i; cd ../introspector; npm i",
"test": "cd admin && npm test && cd ../collector && npm test && cd ../evaluator && npm test && cd ../introspector && npm test",
"start": "cd collector; npm start; cd ../evaluator; npm start; cd ../admin; npm start; cd ../introspector; npm start",
"stop": "cd collector; npm stop; cd ../evaluator; npm stop; cd ../admin; npm stop; cd ../introspector; npm stop",
"restartall": "pm2 restart all",
"stopall": "pm2 stop all",
"list": "pm2 list",
"status": "pm2 list",
"clean": "pm2 flush",
"logs": "pm2 logs",
"bktrace": "admin/api/bin/bklog -f -n 50",
"bkdebug": "admin/api/bin/bklog -f -n 50 -m debug",
"bklog": "admin/api/bin/bklog -f -n 50 -m log",
"bkinfo": "admin/api/bin/bklog -f -n 50 -m info"
},
"dependencies": {
"pm2": "git://github.com/simonlopez/pm2.git#master"
},
"engines": {
"node": "~0.10.23"
},
"repository": {
"type": "git",
"url": "https://github.com/worldline/beekeeper.git"
},
"license": "GPL-3.0",
"homepage": "http://worldline.github.io/beekeeper",
"bugs": {
"url": "https://github.com/worldline/beekeeper/issues"
},
"keywords": [
"realtime",
"graphing",
"cube"
],
"contributors": [
"Romain Alvado <[email protected]>",
"Etienne Brodu <[email protected]>",
"Maxence Dalmais <[email protected]>",
"Simon Lopez <[email protected]>",
"Nicolas Morel <[email protected]>",
"Florian Traverse <[email protected]>"
]
}