Created
August 31, 2013 12:17
-
-
Save rapzo/6397832 to your computer and use it in GitHub Desktop.
package.json
From http://package.json.nodejitsu.com/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "http-server", | |
"preferGlobal": true, | |
"version": "0.3.0", | |
"author": "Nodejitsu <[email protected]>", | |
"description": "a simple zero-configuration command-line http server", | |
"contributors": [ | |
{ | |
"name": "Marak Squires", | |
"email": "[email protected]" | |
} | |
], | |
"bin": { | |
"http-server": "./bin/http-server" | |
}, | |
"scripts": { | |
"start": "node ./bin/http-server", | |
"test": "vows --spec --isolate", | |
"predeploy": "echo This will be run before deploying the app", | |
"postdeploy": "echo This will be run after deploying the app" | |
}, | |
"main": "./lib/http-server", | |
"repository": { | |
"type": "git", | |
"url": "https://github.com/nodejitsu/http-server.git" | |
}, | |
"keywords": [ | |
"cli", | |
"http", | |
"server" | |
], | |
"dependencies" : { | |
"colors" : "*", | |
"flatiron" : "0.1.x", | |
"optimist" : "0.2.x", | |
"union" : "0.1.x", | |
"ecstatic" : "0.1.x", | |
"plates" : "https://github.com/flatiron/plates/tarball/master" | |
}, | |
"analyze": false, | |
"devDependencies": { | |
"vows" : "0.5.x", | |
"request" : "2.1.x" | |
}, | |
"bundledDependencies": [ | |
"union", | |
"ecstatic" | |
], | |
"license": "MIT", | |
"engines": { | |
"node": ">=0.6" | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment