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.6 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-message-port-protocol",
"version": "0.7.3",
"description": "IPFS client/server protocol over message port",
"keywords": [
"ipfs"
],
"homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-message-port-protocol#readme",
"bugs": "https://github.com/ipfs/js-ipfs/issues",
"license": "(Apache-2.0 OR MIT)",
"leadMaintainer": "Alex Potsides <[email protected]>",
"files": [
"src",
"dist",
"!dist/*.tsbuildinfo"
],
"types": "dist/src/index.d.ts",
"typesVersions": {
"*": {
"src/*": [
"dist/src/*",
"dist/src/*/index"
],
"src/": [
"dist/src/index"
]
}
},
"browser": {},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-ipfs.git"
},
"scripts": {
"prepare": "npm run build",
"build": "aegir build --no-bundle",
"test": "aegir test",
"test:node": "aegir test -t node",
"test:browser": "aegir test -t browser",
"test:webworker": "aegir test -t webworker",
"test:chrome": "aegir test -t browser -t webworker",
"test:firefox": "aegir test -t browser -t webworker -- --browsers firefox",
"lint": "aegir lint",
"coverage": "npx nyc -r html npm run test:node -- --bail",
"clean": "rimraf ./dist",
"dep-check": "aegir dep-check -i rimraf -i ipfs-core-types"
},
"dependencies": {
"cids": "^1.1.6",
"ipfs-core-types": "^0.5.2",
"ipld-block": "^0.11.0"
},
"devDependencies": {
"aegir": "^33.0.0",
"rimraf": "^3.0.2",
"uint8arrays": "^2.1.3"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=3.0.0"
}
}