Skip to content

Instantly share code, notes, and snippets.

@fodra
Created November 15, 2017 05:58
Show Gist options
  • Save fodra/ed3970c4de6a1359ea4124ca853fe47b to your computer and use it in GitHub Desktop.
Save fodra/ed3970c4de6a1359ea4124ca853fe47b to your computer and use it in GitHub Desktop.
Package.json boilerplate
{
"name": "module-name",
"version": "0.0.1",
"description": "Application Description",
"author": "Sports Performance Tracking Pty. Ltd. <[email protected]> (https://www.sportsperformancetracking.com)",
"contributors": [
"Andrew Artajos <[email protected]>"
],
"scripts": {
"test": "istanbul cover node_modules/jasmine/bin/jasmine.js",
"start": "node main.js"
},
"main": "main.js",
"repository": {
"type": "git",
"url": "https://github.com/sptgps/sports-nut"
},
"bugs": {
"url": "https://sptgps.fogbugz.com"
},
"dependencies": {},
"devDependencies": {
"istanbul": "^0.4.5",
"jasmine": "^2.8.0"
},
"preferGlobal": true,
"private": true,
"license": "MIT"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment