forked from ipfs-shipyard/ipfs-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.76 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
73
74
75
{
"name": "ipfs-deploy",
"version": "7.13.0",
"description": "Zero-Config CLI to Deploy Static Websites to IPFS",
"author": {
"name": "Agent of User",
"email": "[email protected]",
"url": "https://agentofuser.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs-shipyard/ipfs-deploy/issues"
},
"homepage": "https://github.com/ipfs-shipyard/ipfs-deploy#readme",
"repository": {
"type": "git",
"url": "https://github.com/ipfs-shipyard/ipfs-deploy.git"
},
"keywords": [
"ipfs",
"static-site-generator",
"gatsby",
"deploy"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"main": "src/index.js",
"bin": {
"ipfs-deploy": "bin/ipfs-deploy.js",
"ipd": "bin/ipfs-deploy.js"
},
"engines": {
"node": ">=10.15.3"
},
"scripts": {
"lint": "standard",
"test": "ava"
},
"dependencies": {
"axios": "^0.19.0",
"byte-size": "^6.0.0",
"clipboardy": "^2.1.0",
"colors": "^1.4.0",
"common-tags": "^2.0.0-alpha.1",
"dnslink-cloudflare": "^2.0.3",
"dnslink-dnsimple": "^1.0.1",
"dotenv": "^8.2.0",
"form-data": "^3.0.0",
"ipfs-cluster-api": "0.0.9",
"ipfs-http-client": "^39.0.2",
"lodash": "^4.17.15",
"multiaddr": "^7.1.0",
"neat-frame": "https://github.com/agentofuser/neat-frame#wrap-ansi-options",
"open": "^7.0.0",
"ora": "^4.0.2",
"recursive-fs": "^1.1.2",
"terminal-link": "^2.0.0",
"trammel": "^3.0.1",
"update-notifier": "^3.0.1",
"yargs": "^15.0.1"
},
"devDependencies": {
"all-contributors-cli": "^6.9.3",
"ava": "^2.4.0",
"proxyquire": "^2.1.3",
"standard": "^14.3.1"
},
"ava": {
"helpers": [
"**/**/helpers.js"
]
}
}