-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.1 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
{
"name": "telehash-ws",
"version": "0.2.0",
"description": "Network bindings for telehash to WebSocket",
"main": "index.js",
"browser": {
"ws": false,
"./server.js": false
},
"scripts": {
"test": "mocha && xvfb-run -a karma start && jshint .",
"m": "mocha",
"k": "xvfb-run -a karma start",
"j": "jshint ."
},
"repository": {
"type": "git",
"url": "https://github.com/bitchan/telehash-ws.git"
},
"keywords": [
"telehash",
"transport",
"ws",
"WebSocket"
],
"author": "Kagami Hiiragi",
"license": "CC0",
"bugs": {
"url": "https://github.com/bitchan/telehash-ws/issues"
},
"homepage": "https://github.com/bitchan/telehash-ws",
"devDependencies": {
"chai": "*",
"jshint": "*",
"karma": "^0.12.31",
"karma-browserify": "^4.1.2",
"karma-chrome-launcher": "^0.1.8",
"karma-cli": "~0.0.4",
"karma-firefox-launcher": "^0.1.4",
"karma-mocha": "^0.1.10",
"karma-mocha-reporter": "^1.0.2",
"mocha": "*",
"telehash": "^0.3.26"
},
"dependencies": {
"lob-enc": "~0.0.12",
"ws": "^0.4.32"
}
}