Skip to content

Instantly share code, notes, and snippets.

@fwhenin
Last active August 29, 2015 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fwhenin/b9b73d9752ac03dd0e50 to your computer and use it in GitHub Desktop.
Save fwhenin/b9b73d9752ac03dd0e50 to your computer and use it in GitHub Desktop.
Boilerplate package.json
{
"name" : "package-name",
"preferGlobal": "true",
"version" : "0.0.1",
"author" : "name <email>",
"description" : "package-description",
"contributors": [
{
"name" : "contributer-name",
"email": "contributer-email"
}
],
"bin": {
"package-json": "./bin/package-json"
},
"scripts": {
"start": "start script",
"test" : "test script"
},
"main" : "./lib/package-json",
"repository": {
"type": "git",
"url": "https://github.com/username/package-json.git"
},
"keywords": [
"keyword",
],
"dependencies" : {
"module" : "1.0.x",
},
"noAnalyze": true,
"devDependencies": {
"vows" : "0.6.x",
},
"bundleDependencies": [
],
"license": "MIT",
"engine": {
"node": ">=0.4"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment