forked from ipfs/js-ipfs-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.04 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
91
92
93
94
95
96
97
98
99
100
101
{
"name": "ipfs-utils",
"version": "8.1.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",
"./src/files/glob-source": false,
"./test/files/glob-source.spec.js": false,
"electron-fetch": false,
"fs": false
},
"react-native": {
"./src/fetch.js": "./src/fetch.rn.js",
"./src/http/fetch.js": "./src/http/fetch.rn.js"
},
"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",
"test:react-native:android": "aegir test -t react-native-android",
"test:react-native:ios": "aegir test -t react-native-ios",
"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",
"is-electron": "^2.2.0",
"iso-url": "^1.1.5",
"it-glob": "~0.0.11",
"it-to-stream": "^1.0.0",
"merge-options": "^3.0.4",
"nanoid": "^3.1.20",
"native-abort-controller": "^1.0.3",
"native-fetch": "^3.0.0",
"node-fetch": "npm:@achingbrain/node-fetch@^2.6.4",
"react-native-fetch-api": "^2.0.0",
"stream-to-it": "^0.2.2"
},
"devDependencies": {
"aegir": "^33.2.0",
"delay": "^5.0.0",
"events": "^3.3.0",
"ipfs-unixfs": "^4.0.1",
"it-all": "^1.0.4",
"it-drain": "^1.0.3",
"it-last": "^1.0.4",
"react-native-polyfill-globals": "^3.0.0",
"readable-stream": "^3.6.0",
"uint8arrays": "^2.0.5",
"util": "^0.12.3"
},
"eslintConfig": {
"extends": "ipfs",
"env": {
"worker": true
}
},
"contributors": [
"Hugo Dias <[email protected]>",
"achingbrain <[email protected]>",
"Alan Shaw <[email protected]>",
"Irakli Gozalishvili <[email protected]>",
"Hector Sanjuan <[email protected]>",
"bluelovers <[email protected]>",
"André Costa Lima <[email protected]>",
"Marcin Rataj <[email protected]>",
"Roderik van der Veer <[email protected]>",
"Stepan Yurtsiv <[email protected]>"
]
}