-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.4 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
{
"name": "thjs",
"description": "An implementation of telehash in pure javascript that works in the browser.",
"homepage": "https://github.com/telehash/thjs",
"version": "0.0.41",
"main": "thjs.js",
"dependencies": {
"node-forge": "0.2.x",
"browserify": "~3.19.1",
"uglify-js": "~2.4.8"
},
"optionalDependencies": {
"ursa": "git+https://github.com/quartzjer/ursa.git",
"ecc": "git+https://github.com/quartzjer/ecc.git"
},
"devDependencies": {
"optimist": "*",
"socket.io": "*"
},
"scripts": {
"build": "node build.js",
"seed": "cd seed && node seed.js --seeds './seed/seeds.json'",
"browser-example":"cd examples/browser && node serve.js",
"node-example":"cd examples/node && node run.js"
},
"browser": {
"./lib/crypto/node.js": "./lib/crypto/browser.js"
},
"keywords": [
"telehash",
"crypto",
"p2p",
"dht",
"json",
"mesh",
"javascript",
"browser"
],
"repository": {
"type": "git",
"url": "https://github.com/telehash/thjs.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/telehash/thjs/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/"
}
]
}