-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.52 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
{
"name": "sseries-of-tubes",
"version": "2.0.0",
"description": "Takes Express/Connect routes and creates stream.Writable endpoints for Server Sent Events",
"main": "./sseries-of-tubes.js",
"scripts": {
"test": "npm run test:modules && npm run test:report",
"test:modules": "mocha --recursive --compilers coffee:iced-coffee-script/register --require iced-coffee-coverage/register-istanbul test/",
"test:report": "istanbul report",
"test:coverage": "istanbul report text-summary lcov",
"watch": "iced --watch --bare --map -o ./ -c src/*",
"build": "iced --bare --map -o ./ -c src/*"
},
"repository": {
"type": "git",
"url": "git://github.com/nextorigin/sseries-of-tubes.git"
},
"keywords": [
"sse",
"express",
"connect",
"routes",
"stream",
"writable",
"streaming",
"poll",
"polling",
"eventsource",
"serversentevents"
],
"author": "doublerebel",
"license": "MIT",
"bugs": {
"url": "https://github.com/nextorigin/sseries-of-tubes/issues"
},
"homepage": "https://github.com/nextorigin/sseries-of-tubes#readme",
"dependencies": {
"node-uuid": "^1.4.7",
"restify-errors": "^5.0.0",
"sse-stream": "0.0.5",
"stream-combiner2-withopts": "^2.0.0",
"through2": "^2.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.11",
"express": "^4.14.0",
"iced-coffee-coverage": "^1.0.2",
"iced-coffee-script": "^108.0.11",
"istanbul": "^0.4.4",
"mocha": "^3.0.2",
"sinon": "^3.2.1"
}
}