testing/xpcshell/node-http2/package.json

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/testing/xpcshell/node-http2/package.json	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,44 @@
     1.4 +{
     1.5 +  "name": "http2",
     1.6 +  "version": "2.3.0",
     1.7 +  "description": "An HTTP/2 client and server implementation",
     1.8 +  "main": "lib/index.js",
     1.9 +  "engines" : {
    1.10 +    "node" : ">=0.10.19"
    1.11 +  },
    1.12 +  "dependencies": {
    1.13 +    "http2-protocol": "0.10.x"
    1.14 +  },
    1.15 +  "devDependencies": {
    1.16 +    "istanbul": "*",
    1.17 +    "chai": "*",
    1.18 +    "mocha": "*",
    1.19 +    "docco": "*",
    1.20 +    "bunyan": "*"
    1.21 +  },
    1.22 +  "scripts": {
    1.23 +    "test": "istanbul test _mocha -- --reporter spec --slow 200",
    1.24 +    "doc": "docco lib/* --output doc --layout parallel --css doc/docco.css"
    1.25 +  },
    1.26 +  "repository": {
    1.27 +    "type": "git",
    1.28 +    "url": "https://github.com/molnarg/node-http2.git"
    1.29 +  },
    1.30 +  "homepage": "https://github.com/molnarg/node-http2",
    1.31 +  "bugs": {
    1.32 +    "url": "https://github.com/molnarg/node-http2/issues"
    1.33 +  },
    1.34 +  "keywords": [
    1.35 +    "http",
    1.36 +    "http2",
    1.37 +    "client",
    1.38 +    "server"
    1.39 +  ],
    1.40 +  "author": "Gábor Molnár <gabor@molnar.es> (http://gabor.molnar.es)",
    1.41 +  "contributors": [
    1.42 +    "Nick Hurley",
    1.43 +    "Mike Belshe"
    1.44 +  ],
    1.45 +  "license": "MIT",
    1.46 +  "readmeFilename": "README.md"
    1.47 +}

mercurial