-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
72 lines (72 loc) · 1.6 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
{
"name": "cabal",
"version": "15.0.2",
"description": "p2p chat",
"bin": {
"cabal": "cli.js"
},
"dependencies": {
"cabal-client": "^8.0.0",
"chalk": "^4.0.0",
"js-yaml": "^3.13.1",
"minimist": "^1.2.5",
"mkdirp": "^1.0.4",
"neat-log": "^3.1.0",
"neato-emoji-converter": "^1.1.2",
"node-camera-qr-reader": "^1.0.1",
"signal-exit": "^3.0.3",
"strftime": "^0.10.0",
"strip-ansi": "^6.0.0",
"txt-blit": "^2.0.1",
"wcwidth": "^1.0.1"
},
"devDependencies": {
"cross-zip-cli": "^1.0.0",
"mocha": "^7.1.1",
"pkg": "^4.4.7",
"standard": "^14.3.3"
},
"scripts": {
"test": "standard --fix ./*.js && mocha",
"package": "rm -rf builds && npm run pkg && ./package.sh",
"pkg": "pkg package.json -o builds/cabal"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cabal-club/cabal-cli.git"
},
"keywords": [
"hyperdb",
"decent",
"dat",
"chat",
"cabal",
"decentralize",
"p2p"
],
"authors": [
"cblgh",
"noffle",
"hunor karamán",
"karissa",
"ralphtheninja"
],
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/cabal-club/cabal-cli/issues"
},
"homepage": "https://github.com/cabal-club/cabal-cli#readme",
"pkg": {
"assets": [
"./node_modules/utp-native/prebuilds/**",
"./node_modules/blake2b-wasm/blake2b.wasm",
"./node_modules/siphash24/siphash24.wasm",
"./node_modules/leveldown/prebuilds/**"
],
"targets": [
"node10-linux-x64",
"node10-macos-x64",
"node10-win-x64"
]
}
}