diff -r 000000000000 -r 6474c204b198 testing/xpcshell/node-http2/package.json --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/testing/xpcshell/node-http2/package.json Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,44 @@ +{ + "name": "http2", + "version": "2.3.0", + "description": "An HTTP/2 client and server implementation", + "main": "lib/index.js", + "engines" : { + "node" : ">=0.10.19" + }, + "dependencies": { + "http2-protocol": "0.10.x" + }, + "devDependencies": { + "istanbul": "*", + "chai": "*", + "mocha": "*", + "docco": "*", + "bunyan": "*" + }, + "scripts": { + "test": "istanbul test _mocha -- --reporter spec --slow 200", + "doc": "docco lib/* --output doc --layout parallel --css doc/docco.css" + }, + "repository": { + "type": "git", + "url": "https://github.com/molnarg/node-http2.git" + }, + "homepage": "https://github.com/molnarg/node-http2", + "bugs": { + "url": "https://github.com/molnarg/node-http2/issues" + }, + "keywords": [ + "http", + "http2", + "client", + "server" + ], + "author": "Gábor Molnár (http://gabor.molnar.es)", + "contributors": [ + "Nick Hurley", + "Mike Belshe" + ], + "license": "MIT", + "readmeFilename": "README.md" +}