-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 839 Bytes
/
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
{
"name": "streaming-poller",
"version": "0.0.1",
"description": "A stream that executes another stream at regular intervals",
"main": "index.js",
"scripts": {
"test": "mocha --recursive --compilers coffee:coffee-script/register test"
},
"repository": {
"type": "git",
"url": "https://github.com/craigambrose/streaming-poller.git"
},
"keywords": [
"stream",
"stream2",
"polling"
],
"author": "Craig Ambrose",
"license": "MIT",
"bugs": {
"url": "https://github.com/craigambrose/streaming-poller/issues"
},
"homepage": "https://github.com/craigambrose/streaming-poller",
"devDependencies": {
"chai": "^1.10.0",
"mocha": "^2.1.0",
"stream-array": "^1.0.1"
},
"dependencies": {
"coffee-script": "^1.8.0",
"pauseable": "^0.1.2",
"through2": "^0.6.3"
}
}