Last active
August 29, 2015 14:28
-
-
Save sundarj/a7453b73ae839942a567 to your computer and use it in GitHub Desktop.
Idea for a possible config setup
This file contains hidden or 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": "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