forked from aquiladev/ipfs-action
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.51 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.51 KB
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
{
"name": "ipfs-action",
"version": "1.0.0",
"description": "IPFS upload action",
"exports": "./index.js",
"type": "module",
"scripts": {
"build": "ncc build index.js --license LICENSE",
"lint": "eslint --max-warnings 0 runner.js uploader.js pinners/*.js",
"release": "npm i && release-it",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest"
},
"jest": {
"transform": {},
"moduleNameMapper": {
"ipfs-car/pack": "<rootDir>/node_modules/ipfs-car/dist/cjs/pack/index.js",
"ipfs-car/blockstore/fs": "<rootDir>/node_modules/ipfs-car/dist/cjs/blockstore/fs.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/aquiladev/ipfs-action.git"
},
"keywords": [
"IPFS",
"GitHub",
"action",
"upload",
"deploy",
"deployment",
"delivery"
],
"author": "Sergii Bomko <aquila.ua@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aquiladev/ipfs-action/issues"
},
"homepage": "https://github.com/aquiladev/ipfs-action#readme",
"dependencies": {
"@actions/core": "1.10.1",
"@actions/github": "6.0.0",
"@filebase/sdk": "1.0.2",
"@pinata/sdk": "1.1.23",
"files-from-path": "1.0.4",
"ipfs-http-client": "60.0.1",
"kubo-rpc-client": "3.0.2",
"it-drain": "3.0.5",
"it-last": "3.0.4",
"peer-id": "0.16.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"eslint": "8.6.0",
"husky": "^8.0.1",
"jest": "29.7.0",
"release-it": "15.10.1"
}
}