-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.13 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.13 KB
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
{
"name": "probo-loom",
"version": "3.0.0",
"description": "A stream storage service that allows you to store a stream with some metadata, subscribe to streams, and load the contents of those streams later.",
"main": "index.js",
"author": "",
"license": "Proprietary",
"scripts": {
"test": "./node_modules/.bin/mocha -t 12000 --require should --recursive",
"watch": "./node_modules/.bin/mocha -w -t 12000 --require should --recursive",
"_test": "./node_modules/.bin/mocha -w --no-timeouts --require should --recursive",
"start": "./bin/loom",
"startdev": "nodemon ./bin/loom | ./node_modules/.bin/bunyan #-o short",
"spy": "curl --no-buffer localhost:3060/spy?color"
},
"dependencies": {
"bun": "0.0.12",
"bunyan": "^1.8.15",
"co": "^4.6.0",
"glob": "^7.1.4",
"colors": "^1.1.2",
"lodash": "^4.17.21",
"memorystream": "^0.3.1",
"ms": "^0.7.1",
"passport": "^0.2.2",
"passport-http-bearer": "^1.0.1",
"restify": "^11.1.0",
"tailing-stream": "^0.2.0",
"thinky": "^2.2.4",
"through2": "^2.0.0",
"yaml-config-loader": "~2.1.0",
"yargs": "^17.1.1"
}
}