-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 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
{
"name": "ipfs-action",
"version": "0.3.1",
"description": "IPFS upload action",
"main": "index.js",
"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": "jest"
},
"jest": {
"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 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aquiladev/ipfs-action/issues"
},
"homepage": "https://github.com/aquiladev/ipfs-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@filebase/client": "0.0.2",
"@pinata/sdk": "1.1.23",
"files-from-path": "0.2.6",
"ipfs-http-client": "55.0.0",
"it-last": "1.0.5",
"peer-id": "0.16.0"
},
"devDependencies": {
"eslint": "8.6.0",
"husky": "^8.0.1",
"jest": "27.0.4",
"release-it": "15.10.1"
}
}