-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.89 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": "boaty",
"logo": "⛴️",
"version": "0.0.1",
"description": "🌊⛴️ A p2p cli boat - or client, will work with webtorrent and dat",
"main": "index.js",
"scripts": {
"build": "browserify packages/boaty-boat/index.js -o bin/boaty --bare -p [bannerify --template '#!/usr/bin/env node\n'] && chmod +x bin/boaty",
"start": "./bin/boaty",
"webtorrent:daemon": "./packages/boaty-webtorrent/daemon/index.js",
"debug": "tail -f ./debug.log | emojilog",
"playground": "browserify playground.js -o bin/boaty --bare -p [bannerify --template '#!/usr/bin/env node\n'] && chmod +x bin/boaty",
"test": "echo \"Error: no test specified\" && exit 1"
},
"browserify": {
"transform": [
"babelify"
]
},
"keywords": [
"p2p",
"webtorrent",
"dat",
"cli",
"ncurses",
"blessed",
"react"
],
"author": "thcolin",
"homepage": "https://github.com/thcolin/boaty",
"license": "ISC",
"dependencies": {
"@studio/log": "^1.7.4",
"blessed": "^0.1.81",
"blessed-contrib": "^4.8.5",
"bufferutil": "^3.0.3",
"cli-spinners": "^1.3.1",
"humanize": "0.0.9",
"mkdirp": "^0.5.1",
"oleoo": "^1.0.3",
"opn": "^5.3.0",
"parse-torrent": "^6.0.0",
"pty": "0.0.0",
"react": "^16.3.0",
"react-blessed": "^0.2.1",
"react-blessed-contrib": "^0.2.1",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-observable": "^0.18.0",
"rimraf": "^2.6.2",
"rxjs": "^5.5.8",
"term.js": "0.0.7",
"utf-8-validate": "^4.0.0",
"webtorrent": "^0.98.24",
"ws": "^5.1.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babelify": "^8.0.0",
"bannerify": "^1.0.1",
"browserify": "^16.2.0"
}
}