|
19 | 19 | "npm": ">=3.0.0" |
20 | 20 | }, |
21 | 21 | "scripts": { |
22 | | - "lint": "aegir-lint", |
23 | | - "coverage": "gulp coverage", |
24 | | - "test": "gulp test --dom", |
25 | | - "test:node": "npm run test:unit:node", |
26 | | - "test:browser": "npm run test:unit:browser", |
27 | | - "test:unit:node": "gulp test:node", |
28 | | - "test:unit:node:core": "TEST=core npm run test:unit:node", |
29 | | - "test:unit:node:http": "TEST=http npm run test:unit:node", |
30 | | - "test:unit:node:gateway": "TEST=gateway npm run test:unit:node", |
31 | | - "test:unit:node:cli": "TEST=cli npm run test:unit:node", |
32 | | - "test:unit:browser": "gulp test:browser", |
33 | | - "test:interop": "npm run test:interop:node", |
34 | | - "test:interop:node": "mocha -t 60000 test/interop/node.js", |
35 | | - "test:interop:browser": "mocha -t 60000 test/interop/browser.js", |
| 22 | + "lint": "aegir lint", |
| 23 | + "build": "aegir build", |
| 24 | + "test": "aegir test -t node -t browser --no-cors", |
| 25 | + "test:node": "aegir test -t node", |
| 26 | + "test:browser": "aegir test -t browser -t webworker --no-cors", |
| 27 | + "release": "aegir release -t node -t browser", |
| 28 | + "release-minor": "aegir release --type minor -t node -t browser", |
| 29 | + "release-major": "aegir release --type major -t node -t browser", |
| 30 | + "test:unit:node": "aegir test -t node", |
| 31 | + "test:unit:node:core": "aegir test -t node -f test/core/*.js", |
| 32 | + "test:unit:node:http": "aegir test -t node -f test/http-api/index.js", |
| 33 | + "test:unit:node:gateway": "aegir test -t node -f test/gateway/index.js", |
| 34 | + "test:unit:node:cli": "aegir test -t node -f test/cli/index.js", |
| 35 | + "test:unit:browser": "aegir test -t browser --no-cors", |
| 36 | + "test:interop": "IPFS_TEST=interop aegir test -t node -t browser -f test/interop", |
| 37 | + "test:interop:node": "IPFS_TEST=interop aegir test -t node -f test/interop/node.js", |
| 38 | + "test:interop:browser": "IPFS_TEST=interop aegir test -t browser -f test/interop/browser.js", |
36 | 39 | "test:benchmark": "echo \"Error: no benchmarks yet\" && exit 1", |
37 | 40 | "test:benchmark:node": "echo \"Error: no benchmarks yet\" && exit 1", |
38 | 41 | "test:benchmark:node:core": "echo \"Error: no benchmarks yet\" && exit 1", |
39 | 42 | "test:benchmark:node:http": "echo \"Error: no benchmarks yet\" && exit 1", |
40 | 43 | "test:benchmark:browser": "echo \"Error: no benchmarks yet\" && exit 1", |
41 | | - "build": "gulp build", |
42 | | - "release": "gulp release", |
43 | | - "release-minor": "gulp release --type minor", |
44 | | - "release-major": "gulp release --type major", |
| 44 | + "coverage": "aegir coverage", |
45 | 45 | "coverage-publish": "aegir-coverage publish" |
46 | 46 | }, |
47 | 47 | "pre-commit": [ |
|
62 | 62 | }, |
63 | 63 | "homepage": "https://github.com/ipfs/js-ipfs#readme", |
64 | 64 | "devDependencies": { |
65 | | - "aegir": "^11.0.2", |
| 65 | + "aegir": "^12.1.3", |
66 | 66 | "buffer-loader": "0.0.1", |
67 | 67 | "chai": "^4.1.2", |
68 | 68 | "delay": "^2.0.0", |
|
74 | 74 | "expose-loader": "^0.7.3", |
75 | 75 | "form-data": "^2.3.1", |
76 | 76 | "gulp": "^3.9.1", |
77 | | - "interface-ipfs-core": "~0.32.1", |
| 77 | + "interface-ipfs-core": "~0.33.1", |
78 | 78 | "ipfsd-ctl": "~0.24.0", |
79 | 79 | "left-pad": "^1.1.3", |
80 | 80 | "lodash": "^4.17.4", |
|
90 | 90 | "transform-loader": "^0.2.4" |
91 | 91 | }, |
92 | 92 | "dependencies": { |
93 | | - "async": "^2.5.0", |
| 93 | + "async": "^2.6.0", |
94 | 94 | "bl": "^1.2.1", |
95 | | - "boom": "^6.0.0", |
| 95 | + "boom": "^7.1.1", |
96 | 96 | "byteman": "^1.3.5", |
97 | 97 | "cids": "^0.5.2", |
98 | 98 | "debug": "^3.1.0", |
|
103 | 103 | "glob": "^7.1.2", |
104 | 104 | "hapi": "^16.6.2", |
105 | 105 | "hapi-set-header": "^1.0.2", |
106 | | - "hoek": "^5.0.0", |
107 | | - "ipfs-api": "^14.3.7", |
| 106 | + "hoek": "^5.0.2", |
| 107 | + "ipfs-api": "^15.0.1", |
108 | 108 | "ipfs-bitswap": "~0.17.2", |
109 | | - "ipfs-block": "~0.6.0", |
110 | | - "ipfs-block-service": "~0.12.0", |
| 109 | + "ipfs-block": "~0.6.1", |
| 110 | + "ipfs-block-service": "~0.13.0", |
111 | 111 | "ipfs-multipart": "~0.1.0", |
112 | | - "ipfs-repo": "~0.17.0", |
113 | | - "ipfs-unixfs": "~0.1.13", |
114 | | - "ipfs-unixfs-engine": "~0.22.5", |
115 | | - "ipld-resolver": "~0.13.4", |
| 112 | + "ipfs-repo": "~0.18.3", |
| 113 | + "ipfs-unixfs": "~0.1.14", |
| 114 | + "ipfs-unixfs-engine": "~0.23.0", |
| 115 | + "ipld-resolver": "~0.14.1", |
116 | 116 | "is-ipfs": "^0.3.2", |
117 | 117 | "is-stream": "^1.1.0", |
118 | 118 | "joi": "^13.0.1", |
119 | | - "libp2p": "~0.12.4", |
| 119 | + "libp2p": "~0.13.0", |
| 120 | + "libp2p-circuit": "~0.1.4", |
120 | 121 | "libp2p-floodsub": "~0.11.1", |
121 | 122 | "libp2p-kad-dht": "~0.5.1", |
122 | 123 | "libp2p-mdns": "~0.9.1", |
|
125 | 126 | "libp2p-secio": "~0.8.1", |
126 | 127 | "libp2p-tcp": "~0.11.1", |
127 | 128 | "libp2p-webrtc-star": "~0.13.2", |
128 | | - "libp2p-websockets": "~0.10.2", |
| 129 | + "libp2p-websockets": "~0.10.4", |
129 | 130 | "lodash.flatmap": "^4.5.0", |
130 | 131 | "lodash.get": "^4.4.2", |
131 | 132 | "lodash.sortby": "^4.7.0", |
132 | 133 | "lodash.values": "^4.3.0", |
133 | | - "mafmt": "^3.0.1", |
| 134 | + "mafmt": "^3.0.2", |
134 | 135 | "mime-types": "^2.1.17", |
135 | 136 | "mkdirp": "~0.5.1", |
136 | 137 | "multiaddr": "^3.0.1", |
|
151 | 152 | "pull-stream": "^3.6.1", |
152 | 153 | "pull-stream-to-stream": "^1.3.4", |
153 | 154 | "pull-zip": "^2.0.1", |
154 | | - "read-pkg-up": "^2.0.0", |
| 155 | + "read-pkg-up": "^3.0.0", |
155 | 156 | "readable-stream": "2.3.3", |
156 | 157 | "safe-buffer": "^5.1.1", |
157 | 158 | "stream-to-pull-stream": "^1.7.2", |
158 | 159 | "tar-stream": "^1.5.4", |
159 | 160 | "temp": "~0.8.3", |
160 | 161 | "through2": "^2.0.3", |
161 | 162 | "update-notifier": "^2.3.0", |
162 | | - "yargs": "9.0.1" |
| 163 | + "yargs": "^10.0.3" |
163 | 164 | }, |
164 | 165 | "optionalDependencies": { |
165 | | - "prom-client": "^10.2.0", |
| 166 | + "prom-client": "^10.2.2", |
166 | 167 | "prometheus-gc-stats": "^0.5.0" |
167 | 168 | }, |
168 | 169 | "contributors": [ |
|
0 commit comments