Skip to content

Instantly share code, notes, and snippets.

@bcomnes
Created September 4, 2014 21:16
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 bcomnes/4b3c4c7e0ab832d810b6 to your computer and use it in GitHub Desktop.
Save bcomnes/4b3c4c7e0ab832d810b6 to your computer and use it in GitHub Desktop.
a nice package.json example
{
"name": "flash",
"description": "",
"version": "0.0.0",
"author": {
"name": "Jonathan Ong",
"email": "me@jongleberry.com",
"url": "http://jongleberry.com",
"twitter": "https://twitter.com/jongleberry"
},
"license": "MIT",
"repository": "expressjs/flash",
"dependencies": {},
"devDependencies": {
"istanbul": "0",
"mocha": "1"
},
"scripts": {
"test": "mocha --reporter spec",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"
},
"keywords": []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment