-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
95 lines (95 loc) · 2.16 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "telehash",
"version": "0.4.18",
"main": "index.js",
"dependencies": {
"chrome-net": "^3.0.1",
"debug": "^2.2.0",
"e3x": "^0.2.3",
"hashname": "^0.3.1",
"json-stable-stringify": "~1.0.0",
"lob-enc": "0.0.17",
"localstorage-fs": "~0.1.0",
"optimist": "~0.6.1",
"path-extra": "~0.3.0",
"telehash-http": "^0.1.0",
"telehash-tcp4": "^0.0.8",
"telehash-udp4": "^0.0.14",
"telehash-webrtc": "0.0.8"
},
"devDependencies": {
"chai": "*",
"chext": "0.0.1",
"concat-stream": "~1.4.6",
"event-stream": "~3.1.7",
"glob": "^5.0.13",
"gulp": "^3.9.0",
"gulp-jsdoc": "^0.1.4",
"gulp-mocha": "^2.1.3",
"gulp-watch": "^4.2.4",
"mocha": "*",
"plato": "^1.5.0"
},
"browser": {
"fs": "localstorage-fs",
"telehash-udp4": false,
"telehash-tcp4": false,
"./test/thtp.test.js": "./test/thtp.browser.test.js"
},
"bin": {
"router": "./bin/router.js",
"mesh": "./bin/mesh.js"
},
"scripts": {
"browserify": "browserify index.js -o bundle.js",
"browser": "browserify index.js -o bundle.js && node test/browser/server.js",
"start": "node ./bin/router.js",
"router": "node ./bin/router.js",
"mesh": "node ./bin/mesh.js",
"test": "make test"
},
"testling": {
"harness": "mocha-bdd",
"files": "test/*.js",
"browsers": [
"ie/8..latest",
"chrome/latest",
"firefox/latest"
]
},
"keywords": [
"telehash",
"crypto",
"p2p",
"json",
"mesh"
],
"description": "A telehash library for node and browserify",
"homepage": "https://github.com/telehash/telehash-js",
"repository": {
"type": "git",
"url": "https://github.com/telehash/telehash-js.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/telehash/telehash-js/raw/master/LICENSE"
}
],
"author": {
"name": "Jeremie Miller",
"email": "[email protected]",
"url": "http://jeremie.com/"
},
"maintainers": [
{
"name": "Jeremie Miller",
"email": "[email protected]",
"url": "http://jeremie.com/"
}
],
"engines": {
"node": "0.10.x",
"npm": ">1.2.x"
}
}