-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.64 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@chainsafe/libp2p-gossipsub",
"version": "1.0.0",
"description": "A typescript implementation of gossipsub",
"leadMaintainer": "Cayman Nava <[email protected]>",
"files": [
"src",
"dist"
],
"type": "module",
"types": "dist/ts/index.d.ts",
"exports": {
".": {
"import": "./dist/ts/index.js"
}
},
"scripts": {
"lint": "eslint --ext .ts ts",
"release": "aegir release --no-types",
"build": "tsc -p tsconfig.build.json",
"generate": "protons ./ts/message/rpc.proto",
"prepare": "npm run build",
"pretest": "npm run build",
"benchmark": "node ./node_modules/.bin/benchmark 'test/benchmark/time-cache.test.js' --local",
"test": "aegir test -f './dist/test/*.spec.js'",
"test:node": "npm run test -- --target node",
"test:browser": "npm run test -- --target browser"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChainSafe/js-libp2p-gossipsub.git"
},
"keywords": [
"libp2p",
"pubsub",
"gossip"
],
"author": "Cayman Nava",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ChainSafe/js-libp2p-gossipsub/issues"
},
"homepage": "https://github.com/ChainSafe/js-libp2p-gossipsub#readme",
"dependencies": {
"@libp2p/crypto": "^0.22.12",
"@libp2p/interfaces": "^1.3.31",
"@libp2p/logger": "^1.1.4",
"@libp2p/peer-id": "^1.1.10",
"@libp2p/peer-record": "^1.0.8",
"@libp2p/pubsub": "^1.2.21",
"@libp2p/topology": "^1.1.7",
"denque": "^1.5.0",
"err-code": "^3.0.1",
"iso-random-stream": "^2.0.2",
"it-pipe": "^2.0.3",
"multiformats": "^9.6.4",
"protons-runtime": "^1.0.4",
"uint8arrays": "^3.0.0"
},
"devDependencies": {
"@chainsafe/as-sha256": "^0.2.4",
"@dapplion/benchmark": "^0.2.2",
"@libp2p/floodsub": "^1.0.5",
"@libp2p/interface-compliance-tests": "^1.1.32",
"@libp2p/peer-id-factory": "^1.0.9",
"@libp2p/peer-store": "^1.0.12",
"@multiformats/multiaddr": "^10.1.8",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"aegir": "^36.0.2",
"benchmark": "^2.1.4",
"datastore-core": "^7.0.1",
"delay": "^5.0.0",
"detect-node": "^2.1.0",
"eslint": "^7.1.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"it-pair": "^1.0.0",
"lodash": "^4.17.15",
"os": "^0.1.1",
"p-event": "^5.0.1",
"p-retry": "^4.2.0",
"p-times": "^2.1.0",
"p-wait-for": "^3.2.0",
"prettier": "^2.0.5",
"promisify-es6": "^1.0.3",
"protons": "^3.0.4",
"sinon": "^11.1.1",
"time-cache": "^0.3.0",
"ts-node": "^10.7.0",
"ts-sinon": "^2.0.2",
"typescript": "4.6.2",
"util": "^0.12.3"
},
"contributors": [
"Cayman <[email protected]>",
"Vasco Santos <[email protected]>",
"Mikerah <[email protected]>",
"Tuyen Nguyen <[email protected]>",
"Alex Potsides <[email protected]>",
"Marin Petrunić <[email protected]>",
"Lion - dapplion <[email protected]>",
"Gregory Markou <[email protected]>",
"Alan Shaw <[email protected]>",
"Tuyen <[email protected]>",
"Jacob Heun <[email protected]>",
"Patrick Michot <[email protected]>",
"chainsafe <[email protected]>",
"Hugo Dias <[email protected]>",
"Franck Royer <[email protected]>",
"ChainSafe <[email protected]>"
]
}