This repository was archived by the owner on Jan 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.63 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "galaxy-api",
"description": "Galaxy API",
"dependencies": {
"boom": "^2.6.1",
"es6-promise": "^1.0.0",
"hapi": "^8.0.0",
"joi": "^5.0.2",
"node-pg-migrate": "0.0.7",
"pg": "^4.1.1",
"steam": "^0.6.7"
},
"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=${GALAXY_API_SETTINGS:=./settings_dev.js} nodemon index.js",
"prod": "NODE_ENV=production GALAXY_API_SETTINGS=${GALAXY_API_SETTINGS:=./settings_prod.js} node index.js",
"refreshdb-dev": "NODE_ENV=development GALAXY_API_SETTINGS=${GALAXY_API_SETTINGS:=./settings_dev.js} gulp refreshdb",
"refreshdb-test": "GALAXY_API_SETTINGS=${GALAXY_API_SETTINGS:=./settings_test.js} gulp refreshdb --no-prompt > /dev/null",
"test": "npm run refreshdb-test && GALAXY_API_SETTINGS=${GALAXY_API_SETTINGS:=./settings_test.js} ./node_modules/lab/bin/lab",
"test-keepdb": "GALAXY_API_SETTINGS=${GALAXY_API_SETTINGS:=./settings_test.js} ./node_modules/lab/bin/lab",
"test-verbose": "npm test -- -c -L",
"test-cover": "npm test -- -c -r html -o ./test/artifacts/coverage.html && open ./test/artifacts/coverage.html"
},
"version": "0.0.5"
}