Created
June 16, 2014 03:19
-
-
Save nutzhub/d9f82fca9e6d083c6dd3 to your computer and use it in GitHub Desktop.
Builder config in 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": "meetv-chat-server", | |
"version": "1.0.1", | |
"description": "Server backend for the MeeTV Chat app", | |
"scripts": { | |
"start": "node --debug script/server.js", | |
"test" : "prove --exec './node_modules/buster/bin/buster-test --reporter tap -t' test -v" | |
}, | |
"dependencies": { | |
"express" : "3.x", | |
"connect" : "~2.17.x", | |
"winston": "0.7.x", | |
"convict": "0.1.x", | |
"socket.io": ">= 0.9.14", | |
"xml2js": ">=0.4.x", | |
"CBuffer":">=0.1.4", | |
"mongodb":">=1.4.x", | |
"underscore": ">=1.4.4", | |
"async": ">=0.2.9", | |
"jsonschema": "0.3.2", | |
"connect-mongo" : "~0.4.0", | |
"longjohn" : "0.2.4" | |
}, | |
"devDependencies": { | |
"supertest": ">=0.10.0", | |
"buster": "~0.7.x", | |
"proxyquire" : ">=0.6" | |
}, | |
"builder" : { | |
"dpkgDependencies" : { | |
"build_requires" : { | |
"python" : "0", | |
"startsiden-nodejs" : "0", | |
"mongodb-server" : "0", | |
"g++" : "0" | |
} | |
}, | |
"excludedir" : ["test","reports","misc"], | |
"excludefile" : ["npm-debug.log", ".jshintrc"], | |
"excludeext" : [], | |
"excludeabsfile": [], | |
"tests": { | |
"setup" : "test/scripts/setup.sh", | |
"teardown" : "test/scripts/teardown.sh" | |
}, | |
"installpath" : "/var/www/tviller-server" | |
}, | |
"engines": { | |
"node": ">=0.6" | |
}, | |
"repository": { | |
"type": "git", | |
"url": "https://github.com/startsiden/meetv-chat-server.git" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment