1 |
3a515b92
|
cagy
|
{
|
2 |
|
|
"name": "spdy",
|
3 |
|
|
"version": "4.0.2",
|
4 |
|
|
"description": "Implementation of the SPDY protocol on node.js.",
|
5 |
|
|
"license": "MIT",
|
6 |
|
|
"scripts": {
|
7 |
|
|
"lint": "standard",
|
8 |
|
|
"test": "mocha --reporter=spec test/*-test.js",
|
9 |
|
|
"coverage": "istanbul cover node_modules/.bin/_mocha -- --reporter=spec test/**/*-test.js"
|
10 |
|
|
},
|
11 |
|
|
"pre-commit": [
|
12 |
|
|
"lint",
|
13 |
|
|
"test"
|
14 |
|
|
],
|
15 |
|
|
"keywords": [
|
16 |
|
|
"spdy"
|
17 |
|
|
],
|
18 |
|
|
"repository": {
|
19 |
|
|
"type": "git",
|
20 |
|
|
"url": "git://github.com/indutny/node-spdy.git"
|
21 |
|
|
},
|
22 |
|
|
"homepage": "https://github.com/indutny/node-spdy",
|
23 |
|
|
"bugs": {
|
24 |
|
|
"email": "node-spdy+bugs@indutny.com",
|
25 |
|
|
"url": "https://github.com/spdy-http2/node-spdy/issues"
|
26 |
|
|
},
|
27 |
|
|
"author": "Fedor Indutny <fedor.indutny@gmail.com>",
|
28 |
|
|
"contributors": [
|
29 |
|
|
"Chris Storm <github@eeecooks.com>",
|
30 |
|
|
"François de Metz <francois@2metz.fr>",
|
31 |
|
|
"Ilya Grigorik <ilya@igvita.com>",
|
32 |
|
|
"Roberto Peon",
|
33 |
|
|
"Tatsuhiro Tsujikawa",
|
34 |
|
|
"Jesse Cravens <jesse.cravens@gmail.com>"
|
35 |
|
|
],
|
36 |
|
|
"dependencies": {
|
37 |
|
|
"debug": "^4.1.0",
|
38 |
|
|
"handle-thing": "^2.0.0",
|
39 |
|
|
"http-deceiver": "^1.2.7",
|
40 |
|
|
"select-hose": "^2.0.0",
|
41 |
|
|
"spdy-transport": "^3.0.0"
|
42 |
|
|
},
|
43 |
|
|
"devDependencies": {
|
44 |
|
|
"istanbul": "^0.4.5",
|
45 |
|
|
"mocha": "^6.2.3",
|
46 |
|
|
"pre-commit": "^1.2.2",
|
47 |
|
|
"standard": "^13.1.0"
|
48 |
|
|
},
|
49 |
|
|
"engines": {
|
50 |
|
|
"node": ">=6.0.0"
|
51 |
|
|
},
|
52 |
|
|
"main": "./lib/spdy",
|
53 |
|
|
"optionalDependencies": {}
|
54 |
|
|
}
|