-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 850 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
35
{
"name": "pipe-to-websocket",
"version": "1.0.6",
"description": "Pipe stdout to websocket server",
"main": "index.js",
"author": "shri3k",
"license": "MIT",
"bin": {
"p2w": "./bin/p2w"
},
"repository": {
"type": "git",
"url": "git@github.com:shri3k/pipe-to-websocket.git"
},
"scripts": {
"lint": "eslint lib/** index.js",
"test": "tape tests/**/*.js",
"posttest": "istanbul cover tests/**/*.js && cat ./coverage/lcov.info | coveralls",
"prepublish": "make",
"preinstall": "make"
},
"homepage": "shriek.github.com/pipe-to-websocket",
"bugs": {
"url": "https://github.com/shri3k/pipe-to-websocket/issues"
},
"dependencies": {
"uws": "^0.11.0"
},
"devDependencies": {
"coveralls": "^2.11.15",
"eslint": "^3.11.0",
"istanbul": "^0.4.5",
"tape": "^4.6.3"
}
}