forked from ipfs-shipyard/ipfs-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.58 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
{
"name": "ipfs-deploy",
"version": "10.1.0",
"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": "[email protected]",
"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": {
"axios": "^0.21.1",
"byte-size": "^7.0.1",
"chalk": "^4.1.1",
"clipboardy": "^2.3.0",
"dnslink-cloudflare": "^3.0.0",
"dnslink-dnsimple": "^1.0.1",
"dotenv": "^10.0.0",
"dreamhost": "^1.0.5",
"form-data": "^4.0.0",
"ipfs-http-client": "^50.1.0",
"it-all": "^1.0.5",
"lodash.isempty": "^4.4.0",
"open": "^8.2.0",
"terminal-link": "^2.1.1",
"trammel": "^5.0.0",
"update-notifier": "^5.1.0",
"yargs": "^17.0.1"
},
"devDependencies": {
"@types/lodash.isempty": "^4.4.6",
"@types/proxyquire": "^1.3.28",
"aegir": "^33.2.0",
"proxyquire": "^2.1.3"
},
"engines": {
"node": ">=14.0.0"
},
"contributors": [
"Henrique Dias <[email protected]>",
"Oli Evans <[email protected]>",
"Tony Crowe <[email protected]>",
"Daniel Holmgren <[email protected]>",
"John Kane <[email protected]>",
"Mike Shultz <[email protected]>",
"sixcorners <[email protected]>",
"Ben Timby <[email protected]>",
"David Burela <[email protected]>",
"Giacomo Barbieri <[email protected]>",
"Kevin Cox <[email protected]>",
"Marcin Rataj <[email protected]>",
"Michael <[email protected]>"
]
}