forked from storacha/w3cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.47 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
{
"name": "@web3-storage/w3cli",
"type": "module",
"version": "3.0.0",
"license": "(Apache-2.0 AND MIT)",
"description": "💾 w3 command line interface",
"bin": {
"w3": "shim.js",
"w3up": "shim.js"
},
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "npm-run-all -p -r mock test:ava",
"test:ava": "ava --verbose",
"test:watch": "ava --watch",
"mock": "run-p mock:*",
"mock:bucket-200": "PORT=9200 STATUS=200 node test/helpers/bucket-server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/web3-storage/w3cli.git"
},
"keywords": [
"w3",
"web3",
"storage",
"upload",
"cli"
],
"bugs": {
"url": "https://github.com/web3-storage/w3cli/issues"
},
"homepage": "https://github.com/web3-storage/w3cli#readme",
"devDependencies": {
"@ucanto/principal": "^5.1.0",
"@ucanto/server": "^6.1.0",
"@web3-storage/capabilities": "^4.0.0",
"ava": "^5.1.0",
"execa": "^6.1.0",
"multiformats": "^11.0.0",
"npm-run-all": "^4.1.5",
"standard": "^17.0.0"
},
"dependencies": {
"@ipld/car": "^5.1.1",
"@ipld/dag-ucan": "^3.0.1",
"@ucanto/client": "^5.1.0",
"@ucanto/core": "^5.2.0",
"@ucanto/transport": "^5.1.1",
"@web3-storage/access": "^11.2.0",
"@web3-storage/w3up-client": "^5.5.0",
"files-from-path": "^1.0.0",
"open": "^8.4.0",
"ora": "^6.1.2",
"pretty-tree": "^1.0.0",
"sade": "^1.8.1"
}
}