-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 3.12 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "dwebx-cli",
"version": "1.0.0",
"description": "CLI for interacting with the legacy dWeb network.",
"keywords": [
"dwebx",
"dwebx protocol",
"ddrive",
"decentralized",
"file sharing"
],
"main": "index.js",
"bin": {
"dwebx": "bin/cli.js"
},
"scripts": {
"auth-server": "DEBUG=* node scripts/auth-server.js",
"install-precommit": "echo ./node_modules/.bin/standard > .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit",
"standard": "standard",
"deps": "dependency-check . && dependency-check . --extra --no-dev",
"test": "standard && npm run deps && tape 'test/*.js'",
"test-only": "tape 'test/*.js'",
"package": "rm -rf builds && npm run pkg && ./package.sh",
"pkg": "pkg package.json -o builds/dwebx"
},
"repository": {
"type": "git",
"url": "https://github.com/distributedweb/dwebx-cli.git"
},
"author": "Peeps Labs <peepslabs.gmail.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/distributedweb/dwebx-cli/issues"
},
"homepage": "https://dwebx.org",
"directories": {
"test": "tests"
},
"dependencies": {
"bytes": "^3.1.0",
"chalk": "^2.4.2",
"cli-truncate": "^1.0.0",
"dwebx-doctor": "git://github.com/DistributedWeb/dwebx-doctor.git#1127c9e825e0518ad9def798f621c98a1e329a90",
"dwebx-encoding": "git://github.com/DistributedWeb/dwebx-encoding.git#adbab1965b1152c3a7252ca01807e9744c713398",
"dwebx-json": "git://github.com/DistributedWeb/dwebx-json.git#64e65261bcbaa34c6478c19a9cc59c359661a0eb",
"dwebx-link-resolve": "git://github.com/DistributedWeb/dwebx-link-resolve.git#24ef99019ffb3fc8ae5b0a917323196098a8b0d2",
"dwebx-log": "git://github.com/DistributedWeb/dwebx-log.git#1a569aac13574c34d34a8c3d888231417946bcdb",
"dwebx-node": "git://github.com/DistributedWeb/dwebx-node.git#52c5bc44c5b7803917409e6b72a4feee6605a79d",
"dwebx-registry": "git://github.com/DistributedWeb/dwebx-registry.git#6655d6b50423b8ebbf84eb1f07e08e4c5f1b011c",
"debug": "^4.0.0",
"neat-log": "^3.1.0",
"prettier-bytes": "^1.0.3",
"progress-string": "^1.2.1",
"prompt": "^1.0.0",
"pump": "^3.0.0",
"rimraf": "^2.6.3",
"speedometer": "^1.1.0",
"subcommand": "^2.1.1",
"throttle": "^1.0.3",
"update-notifier": "^2.3.0"
},
"devDependencies": {
"cross-zip-cli": "^1.0.0",
"dependency-check": "^3.3.0",
"ddatabase": "git://github.com/DistributedWeb/ddatabase.git#65bde6fc4d9a72df1f99795da0cb11a6ebf895f8",
"dwebdiscovery": "git://github.com/DistributedWeb/dwebdiscovery.git#370a30863990ffb38ad62a8a82fe03593232b551",
"mkdirp": "^0.5.1",
"pkg": "^4.3.7",
"random-access-memory": "^3.1.1",
"recursive-readdir-sync": "^1.0.6",
"request": "^2.88.0",
"standard": "^12.0.0",
"tape": "^4.10.1",
"tape-spawn": "^1.4.2",
"temporary-directory": "^1.0.2"
},
"pkg": {
"assets": [
"./node_modules/utp-native/prebuilds/**",
"./node_modules/blake2b-wasm/blake2b.wasm",
"./node_modules/siphash24/siphash24.wasm"
],
"targets": [
"node10-linux-x64",
"node10-macos-x64",
"node10-win-x64"
]
}
}