Created
February 25, 2013 21:25
-
-
Save vishwassharma/5033464 to your computer and use it in GitHub Desktop.
The basic JSON file
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": "bisnux", | |
| "version": "0.0.1", | |
| "author": "Vishwas Sharma <[email protected]>", | |
| "description": "A simple ecommerce solution", | |
| "contributors": [ | |
| { | |
| "name": "Vishwas Sharma", | |
| "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" | |
| }, | |
| "repository": { | |
| "type": "git", | |
| "url": "https://github.com/vishwassharma/bisnux.git" | |
| }, | |
| "dependencies" : { | |
| "requirejs" : ">=2.x.x" | |
| }, | |
| "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