Last active
December 21, 2015 22:09
-
-
Save otterthecat/6373440 to your computer and use it in GitHub Desktop.
Template for package.json flles
This file contains 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": "Project", | |
"title": "Project", | |
"description": "Snazzy Description", | |
"version": "0.0.1", | |
"private": true, | |
"homepage": "[email protected]:otterthecat/myRepo.git", | |
"author": { | |
"name": "Otter the Cat", | |
"email": "[email protected]" | |
}, | |
"repository": { | |
"type": "git", | |
"url": "https://github.com/otterthecat/myRepo.git" | |
}, | |
"scripts": { | |
"test": "mocha" | |
}, | |
"devDependencies": { | |
"chai": "^1.9.1", | |
"gulp": "^3.8.5", | |
"gulp-bump": "^0.1.10", | |
"gulp-complexity": "^0.2.1", | |
"gulp-istanbul": "^0.2.0", | |
"gulp-jscs": "^0.6.0", | |
"gulp-jshint": "^1.6.4", | |
"gulp-mocha": "^0.4.1", | |
"gulp-plato": "^0.2.1", | |
"gulp-util": "^2.2.19", | |
"jshint-stylish": "^0.2.0", | |
"mocha": "^1.20.1", | |
"sinon": "^1.10.2", | |
"sinon-chai": "^2.5.0" | |
}, | |
"keywords": [ | |
"Things" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment