Last active
August 29, 2015 13:55
-
-
Save marcusoftnet/8763052 to your computer and use it in GitHub Desktop.
demo package.json
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": "Noun.js", | |
"description": "This is a REST API against the noun part of Merriam-Webster dictionary", | |
"version": "0.0.1", | |
"private": true, | |
"scripts": { | |
"start": "node app.js", | |
"test" : "./node_modules/mocha/bin/mocha -u bdd -R spec", | |
"startLocal" : "nodemon -e html app.js" | |
}, | |
"dependencies": { | |
"express": "*", | |
"monk": "*" | |
}, | |
"devDependencies": { | |
"mocha": "1.17.*", | |
"should": "3.1.*", | |
"superagent": "*" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment