-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.18 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
{
"name": "auto-js-ipfs",
"version": "2.3.0",
"description": "Automatically get some IPFS download/upload/pinning functionality based on your environment.",
"type": "module",
"scripts": {
"test": "node test.js",
"lint": "standard --fix",
"build": "rollup --format cjs ./index.js > index.cjs",
"prepare": "npm run build"
},
"exports": {
".": {
"import": "./index.js",
"require": "./index.cjs",
"default": "./index.js"
},
"./index.cjs": {
"default": "./index.cjs"
}
},
"files": [
"./index.js",
"./index.cjs",
"./util.js",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RangerMauve/auto-js-ipfs.git"
},
"author": "rangermauve <[email protected]> (https://mauve.moe/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/RangerMauve/auto-js-ipfs/issues"
},
"homepage": "https://github.com/RangerMauve/auto-js-ipfs#readme",
"devDependencies": {
"go-ipfs": "^0.14.0",
"ipfs-http-client": "^57.0.3",
"ipfsd-ctl": "^12.0.0",
"js-ipfs-fetch": "^4.2.3",
"rollup": "^2.79.0",
"standard": "^17.0.0",
"tape": "^5.6.0"
}
}