|
2 | 2 | "name": "ipfs", |
3 | 3 | "version": "0.36.3", |
4 | 4 | "description": "JavaScript implementation of the IPFS specification", |
| 5 | + "keywords": [ |
| 6 | + "IPFS" |
| 7 | + ], |
| 8 | + "homepage": "https://js.ipfs.io", |
| 9 | + "bugs": "https://github.com/ipfs/js-ipfs/issues", |
| 10 | + "license": "MIT", |
5 | 11 | "leadMaintainer": "Alan Shaw <[email protected]>", |
6 | | - "bin": { |
7 | | - "jsipfs": "src/cli/bin.js" |
8 | | - }, |
| 12 | + "files": [ |
| 13 | + "src", |
| 14 | + "dist" |
| 15 | + ], |
9 | 16 | "main": "src/core/index.js", |
10 | 17 | "browser": { |
11 | 18 | "./src/core/components/init-assets.js": false, |
|
23 | 30 | "browser-all-ipld-formats": { |
24 | 31 | "./src/core/runtime/ipld-browser.js": "./src/core/runtime/ipld-browser-all.js" |
25 | 32 | }, |
26 | | - "engines": { |
27 | | - "node": ">=10.0.0", |
28 | | - "npm": ">=6.0.0" |
| 33 | + "bin": { |
| 34 | + "jsipfs": "src/cli/bin.js" |
29 | 35 | }, |
| 36 | + "repository": "github:ipfs/js-ipfs", |
30 | 37 | "scripts": { |
31 | 38 | "lint": "aegir lint", |
32 | 39 | "build": "aegir build", |
33 | | - "test": "aegir test -t node -t browser -t webworker --no-cors --timeout=10000", |
34 | | - "test:node": "aegir test -t node --timeout=10000", |
35 | | - "test:browser": "aegir test -t browser --no-cors --timeout=10000", |
36 | | - "test:webworker": "aegir test -t webworker --no-cors --timeout=10000", |
37 | | - "test:node:core": "aegir test -t node -f test/core/**/*.js --timeout=10000", |
38 | | - "test:node:http": "aegir test -t node -f test/http-api/index.js --timeout=10000", |
39 | | - "test:node:gateway": "aegir test -t node -f test/gateway/index.js --timeout=10000", |
40 | | - "test:node:cli": "aegir test -t node -f test/cli/index.js --timeout=10000", |
41 | | - "test:node:interface": "aegir test -t node -f test/core/interface.spec.js --timeout=10000", |
42 | | - "test:bootstrapers": "IPFS_TEST=bootstrapers aegir test -t browser -f test/bootstrapers.js --timeout=10000", |
| 40 | + "test": "aegir test", |
| 41 | + "test:node": "aegir test -t node", |
| 42 | + "test:browser": "aegir test -t browser", |
| 43 | + "test:webworker": "aegir test -t webworker", |
| 44 | + "test:node:core": "aegir test -t node -f test/core/**/*.js", |
| 45 | + "test:node:http": "aegir test -t node -f test/http-api/index.js", |
| 46 | + "test:node:gateway": "aegir test -t node -f test/gateway/index.js", |
| 47 | + "test:node:cli": "aegir test -t node -f test/cli/index.js", |
| 48 | + "test:node:interface": "aegir test -t node -f test/core/interface.spec.js", |
| 49 | + "test:bootstrapers": "IPFS_TEST=bootstrapers aegir test -t browser -f test/bootstrapers.js", |
43 | 50 | "benchmark": "echo \"Error: no benchmarks yet\" && exit 1", |
44 | 51 | "benchmark:node": "echo \"Error: no benchmarks yet\" && exit 1", |
45 | 52 | "benchmark:node:core": "echo \"Error: no benchmarks yet\" && exit 1", |
|
49 | 56 | "release-minor": "aegir release --type minor -t node -t browser", |
50 | 57 | "release-major": "aegir release --type major -t node -t browser" |
51 | 58 | }, |
52 | | - "repository": { |
53 | | - "type": "git", |
54 | | - "url": "git+https://github.com/ipfs/js-ipfs.git" |
55 | | - }, |
56 | | - "keywords": [ |
57 | | - "IPFS" |
58 | | - ], |
59 | | - "license": "MIT", |
60 | | - "bugs": { |
61 | | - "url": "https://github.com/ipfs/js-ipfs/issues" |
62 | | - }, |
63 | | - "homepage": "https://github.com/ipfs/js-ipfs#readme", |
64 | | - "pre-push": [ |
65 | | - "lint" |
66 | | - ], |
67 | | - "devDependencies": { |
68 | | - "aegir": "^18.1.0", |
69 | | - "base64url": "^3.0.1", |
70 | | - "chai": "^4.2.0", |
71 | | - "delay": "^4.1.0", |
72 | | - "detect-node": "^2.0.4", |
73 | | - "dir-compare": "^1.4.0", |
74 | | - "dirty-chai": "^2.0.1", |
75 | | - "execa": "^1.0.0", |
76 | | - "form-data": "^2.3.3", |
77 | | - "hat": "0.0.3", |
78 | | - "interface-ipfs-core": "~0.104.0", |
79 | | - "ipfsd-ctl": "~0.42.0", |
80 | | - "libp2p-websocket-star": "~0.10.2", |
81 | | - "ncp": "^2.0.0", |
82 | | - "qs": "^6.5.2", |
83 | | - "rimraf": "^2.6.2", |
84 | | - "sinon": "^7.3.1", |
85 | | - "stream-to-promise": "^2.2.0" |
86 | | - }, |
87 | 59 | "dependencies": { |
88 | 60 | "@hapi/ammo": "^3.1.0", |
89 | 61 | "@hapi/hapi": "^18.3.1", |
90 | 62 | "@hapi/joi": "^15.0.1", |
91 | 63 | "async": "^2.6.1", |
92 | | - "async-iterator-all": "0.0.2", |
| 64 | + "async-iterator-all": "^1.0.0", |
93 | 65 | "async-iterator-to-pull-stream": "^1.1.0", |
94 | 66 | "async-iterator-to-stream": "^1.1.0", |
95 | 67 | "base32.js": "~0.1.0", |
|
200 | 172 | "yargs": "^13.2.4", |
201 | 173 | "yargs-promise": "^1.1.0" |
202 | 174 | }, |
| 175 | + "devDependencies": { |
| 176 | + "aegir": "^19.0.3", |
| 177 | + "base64url": "^3.0.1", |
| 178 | + "chai": "^4.2.0", |
| 179 | + "delay": "^4.1.0", |
| 180 | + "detect-node": "^2.0.4", |
| 181 | + "dir-compare": "^1.4.0", |
| 182 | + "dirty-chai": "^2.0.1", |
| 183 | + "execa": "^1.0.0", |
| 184 | + "form-data": "^2.3.3", |
| 185 | + "hat": "0.0.3", |
| 186 | + "interface-ipfs-core": "~0.104.0", |
| 187 | + "ipfsd-ctl": "~0.42.0", |
| 188 | + "libp2p-websocket-star": "~0.10.2", |
| 189 | + "ncp": "^2.0.0", |
| 190 | + "qs": "^6.5.2", |
| 191 | + "rimraf": "^2.6.2", |
| 192 | + "sinon": "^7.3.1", |
| 193 | + "stream-to-promise": "^2.2.0" |
| 194 | + }, |
203 | 195 | "optionalDependencies": { |
204 | 196 | "prom-client": "^11.1.3", |
205 | 197 | "prometheus-gc-stats": "~0.6.0" |
206 | 198 | }, |
| 199 | + "engines": { |
| 200 | + "node": ">=10.0.0", |
| 201 | + "npm": ">=6.0.0" |
| 202 | + }, |
207 | 203 | "contributors": [ |
208 | 204 | |
209 | 205 | |
|
0 commit comments