Skip to content

Instantly share code, notes, and snippets.

@vishwassharma
Created February 25, 2013 21:25
Show Gist options
  • Select an option

  • Save vishwassharma/5033464 to your computer and use it in GitHub Desktop.

Select an option

Save vishwassharma/5033464 to your computer and use it in GitHub Desktop.
The basic JSON file
{
"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