Skip to content

Instantly share code, notes, and snippets.

@sundarj
Last active August 29, 2015 14:28
Show Gist options
  • Save sundarj/a7453b73ae839942a567 to your computer and use it in GitHub Desktop.
Save sundarj/a7453b73ae839942a567 to your computer and use it in GitHub Desktop.
Idea for a possible config setup
{
"name": "some app",
"version": "1.2.0",
"description": "i do a neat thing sometimes",
"main": "start.js",
"dependencies": {
"sequelize": "~1.3.7"
},
"devDependencies": {
"promise": "~7.0.1",
"mocha": "~2.2.1",
"expect.js": "~0.3.1"
},
"scripts": {
"test": "./node_modules/.bin/mocha --timeout 1000 tests/*.js"
},
"config": {
"directory": "/root",
"launcher": "/bin/launch",
},
"travis": {
"language": "node_js",
"node_js": ["stable"],
"cache": {
"directories": ["node_modules"]
}
},
"sequelize": {
"config": "./config/database.json",
"migrations": "./migrations",
"models": "./app/models"
},
"license": "gzip"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment