forked from ipfs/js-ipfs-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.93 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
{
"name": "ipfs-utils",
"version": "2.2.2",
"description": "Package to aggregate shared logic and dependencies for the IPFS ecosystem",
"main": "src/index.js",
"author": "Hugo Dias <[email protected]>",
"homepage": "https://github.com/ipfs/js-ipfs-utils",
"bugs": "https://github.com/ipfs/js-ipfs-utils/issues",
"leadMaintainer": "Hugo Dias <[email protected]>",
"files": [
"src",
"dist"
],
"browser": {
"fs-extra": false,
"./src/text-encoder.js": "./src/text-encoder.browser.js",
"./src/temp-dir.js": "./src/temp-dir.browser.js",
"./src/path-join.js": "./src/path-join.browser.js"
},
"repository": "github:ipfs/js-ipfs-utils",
"scripts": {
"test": "aegir test",
"test:browser": "aegir test -t browser",
"test:node": "aegir test -t node",
"test:electron": "aegir test -t electron-main",
"test:electron-renderer": "aegir test -t electron-renderer",
"lint": "aegir lint",
"release": "aegir release --docs",
"release-minor": "aegir release --type minor --docs",
"release-major": "aegir release --type major --docs",
"build": "aegir build"
},
"license": "MIT",
"dependencies": {
"abort-controller": "^3.0.0",
"any-signal": "^1.1.0",
"buffer": "^5.4.2",
"err-code": "^2.0.0",
"fs-extra": "^9.0.0",
"is-electron": "^2.2.0",
"iso-url": "^0.4.7",
"it-glob": "0.0.7",
"merge-options": "^2.0.0",
"nanoid": "^3.1.3",
"node-fetch": "^2.6.0",
"stream-to-it": "^0.2.0"
},
"devDependencies": {
"aegir": "^21.10.0",
"delay": "^4.3.0",
"it-all": "^1.0.1",
"it-drain": "^1.0.0",
"it-last": "^1.0.1",
"it-to-stream": "^0.1.1"
},
"contributors": [
"Hugo Dias <[email protected]>",
"Alex Potsides <[email protected]>",
"Alan Shaw <[email protected]>",
"Hector Sanjuan <[email protected]>",
"bluelovers <[email protected]>",
"Marcin Rataj <[email protected]>"
]
}