1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/testing/xpcshell/node-spdy/package.json Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,38 @@ 1.4 +{ 1.5 + "name": "spdy", 1.6 + "version": "1.8.8", 1.7 + "description": "Implementation of the SPDY protocol on node.js.", 1.8 + "keywords": [ 1.9 + "spdy" 1.10 + ], 1.11 + "repository": { 1.12 + "type": "git", 1.13 + "url": "git://github.com/indutny/node-spdy.git" 1.14 + }, 1.15 + "homepage": "https://github.com/indutny/node-spdy", 1.16 + "bugs": { 1.17 + "email": "node-spdy+bugs@indutny.com", 1.18 + "url": "https://github.com/indunty/node-spdy/issues" 1.19 + }, 1.20 + "author": "Fedor Indutny <fedor.indutny@gmail.com>", 1.21 + "contributors": [ 1.22 + "Chris Storm <github@eeecooks.com>", 1.23 + "François de Metz <francois@2metz.fr>", 1.24 + "Ilya Grigorik <ilya@igvita.com>", 1.25 + "Roberto Peon", 1.26 + "Tatsuhiro Tsujikawa", 1.27 + "Jesse Cravens <jesse.cravens@gmail.com>" 1.28 + ], 1.29 + "dependencies": {}, 1.30 + "devDependencies": { 1.31 + "mocha": "1.3.x" 1.32 + }, 1.33 + "scripts": { 1.34 + "test": "mocha --ui tdd --growl --reporter spec test/unit/*-test.js" 1.35 + }, 1.36 + "engines": [ 1.37 + "node >= 0.7.0" 1.38 + ], 1.39 + "main": "./lib/spdy", 1.40 + "optionalDependencies": {} 1.41 +}