forked from solsolution/ipfs-deploy
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
123 lines (123 loc) · 3.12 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "ipfs-deploy",
"version": "12.0.1",
"description": "Zero-Config CLI to Deploy Static Websites to IPFS",
"keywords": [
"ipfs",
"static-site-generator",
"gatsby",
"deploy"
],
"homepage": "https://github.com/ipfs-shipyard/ipfs-deploy#readme",
"bugs": {
"url": "https://github.com/ipfs-shipyard/ipfs-deploy/issues"
},
"license": "MIT",
"author": {
"name": "Agent of User",
"email": "git@agentofuser.com",
"url": "https://agentofuser.com"
},
"files": [
"src",
"dist"
],
"main": "src/index.js",
"types": "dist/src/index.d.ts",
"typesVersions": {
"*": {
"src/*": [
"dist/src/*",
"dist/src/*/index"
],
"src/": [
"dist/src/index"
]
}
},
"bin": {
"ipfs-deploy": "src/cli.js",
"ipd": "src/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ipfs-shipyard/ipfs-deploy.git"
},
"scripts": {
"lint": "aegir lint && aegir ts -p check",
"test": "aegir test",
"types": "aegir ts -p types",
"release": "aegir release -t node",
"release-minor": "aegir release --type minor",
"release-major": "aegir release --type major"
},
"aegir": {
"test": {
"target": [
"node"
]
},
"build": {
"bundle": false,
"types": true
}
},
"pre-push": [
"lint"
],
"dependencies": {
"@aws-sdk/client-route-53": "^3.53.0",
"@filebase/client": "^0.0.2",
"axios": "^0.26.0",
"byte-size": "^8.1.0",
"chalk": "^4.1.1",
"clipboardy": "^2.3.0",
"dnslink-cloudflare": "^3.0.0",
"dnslink-dnsimple": "^1.0.1",
"dotenv": "^16.0.0",
"dreamhost": "^1.0.5",
"files-from-path": "^0.2.6",
"form-data": "^4.0.0",
"ipfs-http-client": "^50.1.0",
"it-all": "^1.0.6",
"lodash.isempty": "^4.4.0",
"lodash.isstring": "^4.0.1",
"open": "^8.4.0",
"terminal-link": "^2.1.1",
"trammel": "^5.0.0",
"update-notifier": "^5.1.0",
"yargs": "^17.3.1"
},
"devDependencies": {
"@types/lodash.isempty": "^4.4.6",
"@types/lodash.isstring": "^4.0.1",
"@types/proxyquire": "^1.3.28",
"aegir": "^33.2.0",
"proxyquire": "^2.1.3"
},
"engines": {
"node": ">=14.0.0"
},
"contributors": [
"Henrique Dias <hacdias@gmail.com>",
"Oli Evans <oli@tableflip.io>",
"websoftwares <boris@websoftwar.es>",
"Daniel Holmgren <dtholmgren@gmail.com>",
"John Kane <john@kanej.me>",
"Mike Shultz <shultzm@gmail.com>",
"Tony Crowe <github@tonycrowe.com>",
"Austin Huang <im@austinhuang.me>",
"Ben Timby <btimby@gmail.com>",
"David Burela <David.Burela@gmail.com>",
"David Hidvegi <DavidHidvegi@users.noreply.github.com>",
"Giacomo Barbieri <giacomobarbieri94@gmail.com>",
"Kevin Cox <kevincox@kevincox.ca>",
"Marcin Rataj <lidel@lidel.org>",
"Michael <michael@m-bauer.org>",
"ShalokShalom <shalokshalom@protonmail.ch>",
"Tomek Banach <banciur@users.noreply.github.com>",
"jtsmedley <38006759+jtsmedley@users.noreply.github.com>",
"sixcorners <sixcorners@gmail.com>",
"staikosi <83492519+staikosi@users.noreply.github.com>"
]
}