-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 2.03 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
{
"name": "bitswap-peer",
"version": "0.19.3",
"description": "Elastic IPFS BitSwap Peer",
"homepage": "https://github.com/elastic-ipfs/bitswap-peer",
"license": "(Apache-2.0 AND MIT)",
"private": true,
"scripts": {
"start": "node src/index.js",
"test": "NODE_NO_WARNINGS=1 c8 --reporter=text --reporter=html tap --jobs=1 --rcfile=test/utils/config.yml",
"test:ci": "NODE_NO_WARNINGS=1 c8 --reporter=text --reporter=json tap --jobs=1 --rcfile=test/utils/config.yml",
"format": "eslint src test utils --fix",
"lint": "eslint src test utils"
},
"dependencies": {
"@aws-sdk/client-sqs": "3.258.0",
"@aws-sdk/node-http-handler": "3.257.0",
"@chainsafe/libp2p-noise": "11.0.0",
"@chainsafe/libp2p-yamux": "3.0.7",
"@libp2p/mplex": "7.1.1",
"@libp2p/peer-id": "2.0.1",
"@libp2p/peer-id-factory": "2.0.1",
"@libp2p/websockets": "5.0.3",
"dotenv": "16.0.3",
"e-ipfs-core-lib": "0.5.1",
"it-length-prefixed": "8.0.4",
"it-pipe": "2.0.5",
"libp2p": "0.42.2",
"lru-cache": "7.14.1",
"mnemonist": "0.39.5",
"multiformats": "^10.0.3",
"p-retry": "^5.1.2",
"pino": "8.8.0",
"piscina": "3.2.0",
"protobufjs": "7.2.0",
"sodium-native": "4.0.1",
"undici": "5.16.0",
"xml-js": "1.6.11"
},
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@ipld/car": "5.0.3",
"@ipld/dag-pb": "4.0.0",
"c8": "7.12.0",
"eslint": "8.32.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"get-port": "6.1.2",
"husky": "8.0.3",
"ipfs-car": "0.9.1",
"libp2p-gossipsub": "0.13.0",
"libp2p-tcp": "0.17.2",
"lint-staged": "13.1.0",
"pino-pretty": "9.1.1",
"sinon": "15.0.1",
"tap": "16.3.4",
"undici": "5.16.0"
},
"engines": {
"node": "18.12"
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix"
},
"type": "module",
"exports": "./src/index.js"
}