forked from ipfs/js-ipfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.84 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
{
"name": "ipfs-message-port-client",
"version": "0.4.6",
"description": "IPFS client library for accessing IPFS node over message port",
"keywords": [
"ipfs",
"message-port",
"worker"
],
"homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-message-port-client#readme",
"bugs": "https://github.com/ipfs/js-ipfs/issues",
"license": "(Apache-2.0 OR MIT)",
"leadMaintainer": "Alex Potsides <alex@achingbrain.net>",
"files": [
"src",
"dist"
],
"main": "src/index.js",
"typesVersions": {
"*": {
"*": [
"dist/*",
"dist/*/index"
]
}
},
"browser": {},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-ipfs.git"
},
"scripts": {
"test": "echo 'Only interface tests live here'",
"test:interface:message-port-client": "npm run build:test-worker && aegir test -t browser -f ./test/interface-message-port-client.js",
"lint": "aegir lint",
"build:test-worker": "aegir build -- --config ./test/util/webpack.config.js",
"build": "npm run build:bundle && npm run build:types",
"build:bundle": "aegir build",
"build:types": "tsc --build",
"coverage": "npx nyc -r html npm run test:node -- --bail",
"clean": "rimraf ./dist",
"dep-check": "aegir dep-check -i typescript -i ipfs-core -i rimraf -i ipfs-core-types"
},
"dependencies": {
"browser-readablestream-to-it": "^1.0.1",
"ipfs-core-types": "^0.2.1",
"ipfs-message-port-protocol": "^0.5.0"
},
"devDependencies": {
"aegir": "^29.2.2",
"interface-ipfs-core": "^0.143.1",
"ipfs": "^0.53.2",
"ipfs-core": "^0.4.2",
"ipfs-message-port-server": "^0.5.0",
"rimraf": "^3.0.2",
"typescript": "4.0.x"
},
"engines": {
"node": ">=10.3.0",
"npm": ">=3.0.0"
},
"contributors": [
"Irakli Gozalishvili <dev@gozala.io>"
]
}