forked from ibnesayeed/setup-ipfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1001 Bytes
/
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
{
"name": "setup-ipfs",
"version": "0.6.3",
"description": "A GitHub Action to install and initialize IPFS",
"main": "index.js",
"scripts": {
"lint": "eslint index.js",
"package": "ncc build index.js -o dist",
"test": "eslint index.js && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oduwsdl/setup-ipfs.git"
},
"keywords": [
"GitHub",
"Actions",
"Workflow",
"IPFS",
"Setup"
],
"author": "Sawood Alam <@ibnesayeed>",
"contributors": [
{"name":"Mat Kelly <@machawk1>"}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/oduwsdl/setup-ipfs/issues"
},
"homepage": "https://github.com/oduwsdl/setup-ipfs#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"semver": "^7.5"
},
"devDependencies": {
"@zeit/ncc": "^0.22.3",
"eslint": "^8.44.0",
"jest": "^29.5.0"
}
}