This repository has been archived by the owner on Feb 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
80 lines (80 loc) · 2.29 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
{
"name": "libp2p-spdy",
"version": "0.13.3",
"description": "SPDY 3.1 implementation wrapper that is compatible with libp2p Stream Muxer expected interface",
"leadMaintainer": "Jacob Heun <[email protected]>",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"lint": "aegir lint",
"build": "aegir build",
"test": "aegir test",
"test:node": "aegir test -t node",
"test:browser": "aegir test -t browser",
"release": "aegir release",
"release-minor": "aegir release --type minor",
"release-major": "aegir release --type major",
"coverage": "aegir coverage",
"coverage-publish": "aegir-coverage publish"
},
"pre-push": [
"lint"
],
"repository": {
"type": "git",
"url": "https://github.com/libp2p/js-libp2p-spdy.git"
},
"keywords": [
"IPFS"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/libp2p/js-libp2p-spdy/issues"
},
"homepage": "https://github.com/libp2p/js-libp2p-spdy",
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
},
"devDependencies": {
"aegir": "^18.2.2",
"chai": "^4.2.0",
"chai-checkmark": "^1.0.1",
"dirty-chai": "^2.0.1",
"interface-stream-muxer": "~0.6.0",
"libp2p-tcp": "~0.13.0",
"libp2p-websockets": "~0.12.2",
"multiaddr": "^6.0.6",
"pull-file": "^1.1.0",
"pull-pair": "^1.1.0",
"run-parallel": "^1.1.9",
"sinon": "^7.3.1",
"tap-spec": "^4.1.1",
"tape": "^4.10.1"
},
"dependencies": {
"debug": "^4.1.1",
"interface-connection": "~0.3.3",
"once": "^1.4.0",
"pull-catch": "^1.0.1",
"pull-stream": "^3.6.9",
"pull-stream-to-stream": "^1.3.4",
"spdy-transport": "^3.0.0",
"stream-to-pull-stream": "^1.7.2"
},
"contributors": [
"David Dias <[email protected]>",
"Francisco Baio Dias <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"JGAntunes <[email protected]>",
"Jacob Heun <[email protected]>",
"Jacob Heun <[email protected]>",
"Richard Littauer <[email protected]>",
"greenkeeperio-bot <[email protected]>",
"nginnever <[email protected]>",
"npmcdn-to-unpkg-bot <[email protected]>",
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <[email protected]>"
]
}