This repository has been archived by the owner on Jun 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
80 lines (80 loc) · 2.25 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
{
"name": "ipfs-http-client-lite",
"version": "0.3.0",
"description": "A client library for the IPFS HTTP API",
"leadMaintainer": "Alan Shaw <[email protected]>",
"main": "src/index.js",
"browser": {
"./src/lib/configure.js": "./src/lib/configure.browser.js",
"./src/add/form-data.js": "./src/add/form-data.browser.js",
"./src/files/write/form-data.js": "./src/files/write/form-data.browser.js"
},
"browserslist": ">1.5% or node >=10 and not ios_saf <13 and not ie 11 and not dead",
"files": [
"src",
"dist"
],
"scripts": {
"test": "aegir test",
"test:node": "aegir test -t node",
"test:browser": "aegir test -t browser",
"test:webworker": "aegir test -t webworker",
"lint": "aegir lint",
"build": "aegir build",
"release": "aegir release --no-docs",
"release-minor": "aegir release --type minor --no-docs",
"release-major": "aegir release --type major --no-docs",
"coverage": "npx nyc -r html npm run test:node -- --bail"
},
"dependencies": {
"abort-controller": "^3.0.0",
"async-iterator-to-pull-stream": "^1.3.0",
"buffer": "^5.2.1",
"cids": "^0.7.1",
"explain-error": "^1.0.4",
"form-data": "^2.4.0",
"iterable-ndjson": "^1.1.0",
"node-fetch": "^2.6.0",
"pull-stream-to-async-iterator": "^1.0.2",
"querystring": "^0.2.0"
},
"devDependencies": {
"aegir": "^19.0.4",
"bignumber.js": "^9.0.0",
"chai": "^4.2.0",
"dirty-chai": "^2.0.1",
"go-ipfs-dep": "^0.4.21",
"interface-ipfs-core": "~0.105.1",
"ipfs-block": "^0.8.1",
"ipfsd-ctl": "^0.43.0",
"multiaddr": "^6.1.0",
"multiaddr-to-uri": "^4.0.1",
"multihashes": "^0.4.14",
"peer-id": "^0.12.2",
"pull-stream": "^3.6.12"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=5.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ipfs-shipyard/js-ipfs-http-client-lite"
},
"keywords": [
"ipfs",
"http",
"api",
"client",
"rpc",
"rest"
],
"license": "(Apache-2.0 OR MIT)",
"bugs": {
"url": "https://github.com/ipfs-shipyard/js-ipfs-http-client-lite/issues"
},
"homepage": "https://github.com/ipfs-shipyard/js-ipfs-http-client-lite",
"contributors": [
"Alan Shaw <[email protected]>"
]
}