forked from ipfs/js-ipfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.71 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
{
"name": "ipfs-core-utils",
"version": "0.6.1",
"description": "Package to share code between ipfs and ipfs-http-client",
"author": "Alex Potsides <alex@achingbrain.net>",
"homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-core-utils#readme",
"bugs": "https://github.com/ipfs/js-ipfs/issues",
"leadMaintainer": "Alex Potsides <alex@achingbrain.net>",
"main": "src/index.js",
"files": [
"src",
"dist"
],
"typesVersions": {
"*": {
"*": [
"dist/*",
"dist/*/index"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-ipfs.git"
},
"scripts": {
"test": "aegir test",
"test:browser": "aegir test -t browser",
"test:electron": "aegir test -t electron-main",
"test:electron-renderer": "aegir test -t electron-renderer",
"test:node": "aegir test -t node",
"lint": "aegir lint",
"build": "npm run build:js && npm run build:types",
"build:js": "aegir build",
"build:types": "tsc --build",
"clean": "rimraf ./dist",
"dep-check": "aegir dep-check -i typescript -i rimraf -i ipfs-core-types"
},
"license": "MIT",
"dependencies": {
"any-signal": "^2.0.0",
"blob-to-it": "^1.0.1",
"browser-readablestream-to-it": "^1.0.1",
"cids": "^1.1.5",
"err-code": "^2.0.3",
"ipfs-core-types": "^0.2.1",
"ipfs-utils": "^5.0.0",
"it-all": "^1.0.4",
"it-map": "^1.0.4",
"it-peekable": "^1.0.1",
"multiaddr": "^8.0.0",
"multiaddr-to-uri": "^6.0.0",
"parse-duration": "^0.4.4",
"timeout-abort-controller": "^1.1.1",
"uint8arrays": "^1.1.0"
},
"devDependencies": {
"aegir": "^29.2.2",
"rimraf": "^3.0.2",
"typescript": "4.0.x"
}
}