Created
August 19, 2011 14:25
-
-
Save ncb000gt/1156916 to your computer and use it in GitHub Desktop.
NPM package.json Files
This file contains hidden or 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": "packagename", | |
| "description": "A description of your project...even though you wont necessarily be putting it in NPM.", | |
| "version": "0.0.1", | |
| "author": "Your Name Here (http://github.com/user)", | |
| "engines": { "node": ">= 0.4.11" }, | |
| "repository": { | |
| "type": "git", | |
| "url": "http://github.com/user/project.git" | |
| }, | |
| "licenses": [{ "type": "MIT" }], | |
| "bugs": { | |
| "web" : "http://github.com/user/project/issues" | |
| }, | |
| "dependencies": { | |
| "express": "*", | |
| "bcrypt": ">=0.2.3" | |
| }, | |
| "devDependencies": { | |
| "nodeunit": ">=0.5.1" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment