forked from LaurentZuijdwijk/streaming-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 734 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 734 Bytes
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
{
"name": "streaming-cache",
"version": "0.5.0",
"description": "Cache and replay NodeJS streams",
"main": "index.js",
"scripts": {
"test": "istanbul cover ./node_modules/jasmine-node/bin/jasmine-node ./spec --captureExceptions --verbose && mocha test/integration/*.spec.js"
},
"keywords": [
"cache",
"streams",
"queue"
],
"author": "Laurent Zuijdwijk",
"repository": "https://github.com/LaurentZuijdwijk/streaming-cache",
"license": "BSD-2-Clause",
"dependencies": {
"linkedlist": "^1.0.1",
"lodash.assign": "^4.0.1",
"lru-cache": "^2.7.0",
"mocha": "^3.2.0"
},
"devDependencies": {
"istanbul": "^0.3.22",
"jasmine-node": "^1.14.5",
"supertest": "^3.0.0"
}
}