package.json (1210B)
1 { 2 "name": "http2", 3 "version": "3.3.8", 4 "description": "An HTTP/2 client and server implementation", 5 "main": "lib/index.js", 6 "engines": { 7 "node": ">=0.12.0 <9.0.0" 8 }, 9 "devDependencies": { 10 "istanbul": "*", 11 "chai": "*", 12 "mocha": "*", 13 "docco": "*", 14 "bunyan": "*" 15 }, 16 "scripts": { 17 "test": "istanbul test _mocha -- --reporter spec --slow 500 --timeout 15000", 18 "doc": "docco lib/* --output doc --layout parallel --template root.jst --css doc/docco.css && docco lib/protocol/* --output doc/protocol --layout parallel --template protocol.jst --css doc/docco.css" 19 }, 20 "repository": { 21 "type": "git", 22 "url": "https://github.com/molnarg/node-http2.git" 23 }, 24 "homepage": "https://github.com/molnarg/node-http2", 25 "bugs": { 26 "url": "https://github.com/molnarg/node-http2/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 "Yoshihiro Iwanaga", 39 "Igor Novikov", 40 "James Willcox", 41 "David Björklund", 42 "Patrick McManus" 43 ], 44 "license": "MIT", 45 "readmeFilename": "README.md" 46 }