-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
90 lines (90 loc) · 2.57 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "ipfs-utils",
"version": "6.0.3",
"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": {
"./src/http/fetch.js": "./src/http/fetch.browser.js",
"./src/temp-dir.js": "./src/temp-dir.browser.js",
"./src/path-join.js": "./src/path-join.browser.js",
"./test/files/glob-source.spec.js": false,
"electron-fetch": false
},
"types": "dist/src/index.d.ts",
"typesVersions": {
"*": {
"src/*": [
"dist/src/*"
]
}
},
"repository": "github:ipfs/js-ipfs-utils",
"scripts": {
"prepare": "aegir build --no-bundle",
"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": "^2.1.0",
"buffer": "^6.0.1",
"electron-fetch": "^1.7.2",
"err-code": "^3.0.1",
"fs-extra": "^9.0.1",
"is-electron": "^2.2.0",
"iso-url": "^1.0.0",
"it-glob": "~0.0.11",
"it-to-stream": "^0.1.2",
"merge-options": "^3.0.4",
"nanoid": "^3.1.20",
"native-abort-controller": "^1.0.3",
"native-fetch": "^3.0.0",
"node-fetch": "^2.6.1",
"stream-to-it": "^0.2.2",
"web-encoding": "^1.0.6"
},
"devDependencies": {
"@types/err-code": "^2.0.0",
"@types/fs-extra": "^9.0.5",
"aegir": "^30.3.0",
"delay": "^5.0.0",
"ipfs-unixfs": "^4.0.1",
"it-all": "^1.0.4",
"it-drain": "^1.0.3",
"it-last": "^1.0.4",
"uint8arrays": "^2.0.5"
},
"eslintConfig": {
"extends": "ipfs",
"env": {
"worker": true
}
},
"contributors": [
"Hugo Dias <[email protected]>",
"Alex Potsides <[email protected]>",
"Alan Shaw <[email protected]>",
"Irakli Gozalishvili <[email protected]>",
"Hector Sanjuan <[email protected]>",
"bluelovers <[email protected]>",
"Marcin Rataj <[email protected]>",
"Roderik van der Veer <[email protected]>"
]
}