Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 {
2 "name": "http2",
3 "version": "2.3.0",
4 "description": "An HTTP/2 client and server implementation",
5 "main": "lib/index.js",
6 "engines" : {
7 "node" : ">=0.10.19"
8 },
9 "dependencies": {
10 "http2-protocol": "0.10.x"
11 },
12 "devDependencies": {
13 "istanbul": "*",
14 "chai": "*",
15 "mocha": "*",
16 "docco": "*",
17 "bunyan": "*"
18 },
19 "scripts": {
20 "test": "istanbul test _mocha -- --reporter spec --slow 200",
21 "doc": "docco lib/* --output doc --layout parallel --css doc/docco.css"
22 },
23 "repository": {
24 "type": "git",
25 "url": "https://github.com/molnarg/node-http2.git"
26 },
27 "homepage": "https://github.com/molnarg/node-http2",
28 "bugs": {
29 "url": "https://github.com/molnarg/node-http2/issues"
30 },
31 "keywords": [
32 "http",
33 "http2",
34 "client",
35 "server"
36 ],
37 "author": "Gábor Molnár <gabor@molnar.es> (http://gabor.molnar.es)",
38 "contributors": [
39 "Nick Hurley",
40 "Mike Belshe"
41 ],
42 "license": "MIT",
43 "readmeFilename": "README.md"
44 }