forked from StreamMachine/sm-archiver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.32 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
66
67
68
69
70
71
{
"name": "sm-archiver",
"version": "0.2.0",
"description": "StreamMachine Archive Writer",
"homepage": "https://github.com/StreamMachine/sm-archiver/",
"author": "Eric Richardson <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/StreamMachine/sm-archiver.git"
},
"main": "index.js",
"dependencies": {
"@google-cloud/debug-agent": "^2.1.3",
"@google-cloud/trace-agent": "^2.2.0",
"aws-sdk": "2.95.0",
"bindings": "1.3.0",
"bluebird": "3.5.0",
"body-parser": "1.17.2",
"compression": "1.7.0",
"cors": "2.8.4",
"debug": "3.0.0",
"elasticsearch": "13.3.1",
"eventemitter2": "4.1.2",
"express": "4.15.4",
"grunt-coffeelint": "0.0.16",
"heapdump": "^0.3.9",
"m3u": "0.0.2",
"moment": "2.18.1",
"nan": "2.6.2",
"nconf": "0.8.4",
"node-statsd": "0.1.1",
"object-sizeof": "1.2.0",
"on-headers": "1.0.1",
"request": "2.81.0",
"sm-waveform": "0.1.0",
"streammachine": "git://github.com/mediainbox/StreamMachine.git#0.7.2",
"temp": "0.8.3",
"underscore": "1.8.3",
"waveform-data": "2.0.1"
},
"devDependencies": {
"coffee-script": "1.12.7",
"grunt": "1.0.1",
"grunt-cli": "1.2.0",
"grunt-contrib-coffee": "1.0.0",
"grunt-contrib-copy": "1.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "./runner-cmd",
"start:debug": "grunt; DEBUG='sm:archiver*' npm run start",
"docker": "docker run -ti --rm -v $PWD:/data -p 9001:9001 sm-archiver",
"docker:start": "npm run docker -- npm start",
"docker:start:debug": "npm run docker -- npm run start:debug",
"docker:start:debug:testing": "npm run docker:start:debug -- -- -- --config config/testing.json",
"docker:build": "docker build -t 'sm-archiver' .",
"compile:v8": "cd src/archiver/monitors/v8 && node-gyp rebuild && cd ../../../..",
"docker:compile:v8": "npm run docker -- npm run compile:v8",
"migrate": "./migrator-cmd",
"migrate:debug": "grunt; DEBUG='sm:migrator*' npm run migrate",
"docker:migrate:debug": "npm run docker -- npm run migrate:debug",
"docker:migrate:debug:testing": "npm run docker:migrate:debug -- -- -- --config config/testing.json"
},
"bin": {
"sm-archiver": "./runner-cmd"
},
"keywords": [
"streammachine"
],
"license": "MIT"
}