-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "bugout",
"version": "0.0.13",
"description": "Backend web services over WebRTC.",
"main": "index.js",
"author": "Chris McCormick <chris@mccormick.cx>",
"homepage": "https://github.com/chr15m/bugout",
"repository": {
"type": "git",
"url": "https://github.com/chr15m/bugout.git",
"web": "https://github.com/chr15m/bugout"
},
"bugs": {
"url": "https://github.com/chr15m/bugout/issues/"
},
"dependencies": {
"bencode": "^2.0.0",
"bs58": "^4.0.1",
"bs58check": "^2.1.2",
"debug": "^3.1.0",
"inherits": "^2.0.3",
"ripemd160": "^2.0.2",
"tweetnacl": "^1.0.0",
"webtorrent": "^1.0.2"
},
"devDependencies": {
"babel-minify": "^0.5.0",
"browserify": "^16.2.3",
"disc": "^1.3.3",
"tape": "^4.9.1"
},
"scripts": {
"build": "npm run compile && npm run minify",
"minify": "cat bugout.js | minify --mangle=false > bugout.min.js",
"compile": "browserify -s Bugout index.js > bugout.js",
"disc": "browserify -s Bugout --full-paths index.js | discify > disc.html",
"size": "npm run build && cat bugout.min.js | gzip | wc -c",
"test": "node test.js"
},
"keywords": [
"crypto",
"bittorrent",
"webtorrent",
"networking",
"webrtc",
"decentralization",
"hash",
"Uint8Array"
]
}