galaxy-api/package.json

45 строки
1.5 KiB
JSON

{
"name": "galaxy-api",
"description": "Galaxy API",
"dependencies": {
"es6-promise": "^1.0.0",
"hapi": "^8.0.0",
"joi": "^5.0.2",
"pg": "^4.1.1",
"hapi-node-postgres": "cvan/hapi-node-postgres#no-pg-native",
"node-pg-migrate": "0.0.7",
"boom": "^2.6.1"
},
"devDependencies": {
"gulp": "^3.8.7",
"gulp-jshint": "^1.8.4",
"jshint-stylish": "^0.4.0",
"nodemon": "^1.2.1",
"code": "^1.2.1",
"lab": "^5.1.0",
"run-sequence": "^1.0.2",
"gulp-shell": "^0.2.11",
"inquirer": "^0.8.0",
"yargs": "^1.3.3"
},
"engines": {
"node": ">= 0.10.x",
"npm": ">= 1.1.x"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/mozilla/galaxy-api.git"
},
"scripts": {
"start": "node index.js",
"dev": "NODE_ENV=development GALAXY_API_SETTINGS=./settings_dev.js nodemon index.js",
"prod": "NODE_ENV=production GALAXY_API_SETTINGS=./settings_prod.js node index.js",
"test": "GALAXY_API_SETTINGS=./settings_test.js gulp refreshdb --no-prompt > /dev/null && GALAXY_API_SETTINGS=./settings_test.js ./node_modules/lab/bin/lab",
"test-keepdb": "GALAXY_API_SETTINGS=./settings_test.js ./node_modules/lab/bin/lab",
"test-verbose": "GALAXY_API_SETTINGS=./settings_test.js ./node_modules/lab/bin/lab -c -L",
"test-cover": "GALAXY_API_SETTINGS=./settings_test.js ./node_modules/lab/bin/lab -c -r html -o ./test/artifacts/coverage.html && open ./test/artifacts/coverage.html"
},
"version": "0.0.5"
}