This repository has been archived by the owner on Oct 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
83 lines (83 loc) · 2.47 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
{
"name": "multistream-select",
"version": "3.0.2",
"leadMaintainer": "Jacob Heun <[email protected]>",
"description": "JavaScript implementation of multistream-select",
"main": "src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"lint": "aegir ts -p check && aegir lint",
"build": "aegir build",
"test": "aegir test",
"test:node": "aegir test -t node",
"test:browser": "aegir test -t browser",
"test:webworker": "aegir test -t webworker",
"test:electron": "aegir test -t electron-main",
"test:electron-renderer": "aegir test -t electron-renderer",
"coverage": "nyc --reporter=text --reporter=lcov npm run test:node",
"release": "aegir release -t node -t browser",
"release-minor": "aegir release --type minor -t node -t browser",
"release-major": "aegir release --type major -t node -t browser",
"dep-check": "aegir dep-check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/multiformats/js-multistream-select.git"
},
"pre-push": [
"lint"
],
"keywords": [
"stream",
"multistream",
"protocol",
"ipfs",
"libp2p"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/multiformats/js-multistream-select/issues"
},
"homepage": "https://github.com/multiformats/js-multistream-select#readme",
"dependencies": {
"abortable-iterator": "^3.0.0",
"bl": "^5.0.0",
"debug": "^4.1.1",
"err-code": "^3.0.1",
"it-first": "^1.0.6",
"it-handshake": "^2.0.0",
"it-length-prefixed": "^5.0.0",
"it-pipe": "^1.0.1",
"it-reader": "^3.0.0",
"p-defer": "^3.0.0",
"uint8arrays": "^3.0.0"
},
"devDependencies": {
"@types/bl": "^5.0.1",
"@types/debug": "^4.1.7",
"aegir": "^36.1.1",
"it-pair": "^1.0.0",
"p-timeout": "^4.0.0",
"streaming-iterables": "^5.0.2",
"timeout-abort-controller": "^2.0.0",
"util": "^0.12.4",
"varint": "^6.0.0"
},
"contributors": [
"David Dias <[email protected]>",
"Jacob Heun <[email protected]>",
"Alex Potsides <[email protected]>",
"dignifiedquire <[email protected]>",
"Victor Bjelkholm <[email protected]>",
"Richard Littauer <[email protected]>",
"Vasco Santos <[email protected]>",
"Alan Shaw <[email protected]>",
"Hugo Dias <[email protected]>",
"Didrik Nordström <[email protected]>",
"Projjol Banerji <[email protected]>"
]
}