|
1 { |
|
2 "name": "http2-protocol", |
|
3 "version": "0.10.0", |
|
4 "description": "A JavaScript implementation of the HTTP/2 framing layer", |
|
5 "main": "lib/index.js", |
|
6 "engines" : { |
|
7 "node" : "0.10.x" |
|
8 }, |
|
9 "devDependencies": { |
|
10 "istanbul": "*", |
|
11 "chai": "*", |
|
12 "mocha": "*", |
|
13 "docco": "*", |
|
14 "bunyan": "*" |
|
15 }, |
|
16 "scripts": { |
|
17 "test": "istanbul test _mocha -- --reporter spec --slow 200", |
|
18 "doc": "docco lib/* --output doc --layout parallel --css doc/docco.css" |
|
19 }, |
|
20 "repository": { |
|
21 "type": "git", |
|
22 "url": "https://github.com/molnarg/node-http2-protocol.git" |
|
23 }, |
|
24 "homepage": "https://github.com/molnarg/node-http2-protocol", |
|
25 "bugs": { |
|
26 "url": "https://github.com/molnarg/node-http2-protocol/issues" |
|
27 }, |
|
28 "keywords": [ |
|
29 "http", |
|
30 "http2", |
|
31 "client", |
|
32 "server" |
|
33 ], |
|
34 "author": "Gábor Molnár <gabor@molnar.es> (http://gabor.molnar.es)", |
|
35 "contributors": [ |
|
36 "Nick Hurley", |
|
37 "Mike Belshe" |
|
38 ], |
|
39 "license": "MIT", |
|
40 "readmeFilename": "README.md" |
|
41 } |