-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
68 lines (68 loc) · 1.71 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
{
"name": "planktos",
"version": "0.3.1",
"description": "Serving websites over bittorrent",
"main": "index.js",
"bin": "./bin/setup.js",
"dependencies": {
"aether-torrent": "^0.3.0",
"convict": "^4.3.2",
"create-torrent": "^3.29.1",
"idb-kv-store": "^4.3.1",
"minimist": "^1.2.0",
"parse-torrent-file": "^4.0.2",
"readable-stream-node-to-web": "^1.0.0",
"run-parallel-limit": "^1.0.3",
"stream-to-blob": "^1.0.0"
},
"devDependencies": {
"browserify": "^16.2.0",
"exorcist": "^1.0.1",
"express": "^4.15.2",
"karma": "^2.0.2",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.3.0",
"mocha": "^5.1.1",
"nodemon": "^1.11.0",
"standard": "^11.0.1",
"uglify-js": "git://github.com/mishoo/UglifyJS2.git#harmony-v2.7.5"
},
"scripts": {
"standard": "standard",
"bundle": "./bin/build.sh",
"pre-test": "standard && ./bin/build.sh && ./bin/setup.js -r test/www/v1 && ./bin/setup.js -r test/www/v2 test/www/v2/foo.txt",
"test": "npm run -s pre-test && mocha test/testCli.js && karma start",
"watch": "nodemon --exec 'npm test'",
"prepublish": "standard && ./bin/build.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xuset/planktos.git"
},
"keywords": [
"bittorrent",
"webtorrent",
"p2p",
"static",
"seed"
],
"standard": {
"globals": [
"URL",
"Response",
"BroadcastChannel",
"Blob"
],
"ignore": [
"build",
"test/www"
]
},
"author": "xuset",
"license": "MIT",
"bugs": {
"url": "https://github.com/xuset/planktos/issues"
},
"homepage": "https://xuset.github.io/planktos/"
}