This repository has been archived by the owner on Jan 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
69 lines (69 loc) · 2.04 KB
/
package.json
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "opentrials-api",
"version": "1.1.1",
"private": true,
"description": "API for OpenTrials.net.",
"license": "MIT",
"keywords": [
"opentrials"
],
"homepage": "https://github.com/opentrials/api",
"bugs": "https://github.com/opentrials/api/issues",
"repository": {
"type": "git",
"url": "https://github.com/opentrials/api.git"
},
"author": "Open Knowledge <[email protected]> (https://okfn.org)",
"contributors": [
"Vitor Baptista <[email protected]> (http://vitorbaptista.com)"
],
"engines": {
"node": "6.9.5"
},
"dependencies": {
"bluebird": "^3.4.6",
"bookshelf": "^0.10.1",
"dotenv": "^2.0.0",
"elasticsearch": "^15.0.0",
"good": "^7.0.2",
"good-console": "^6.1.2",
"hapi": "^15.0.3",
"http-aws-es": "^1.1.3",
"inert": "^4.0.2",
"knex": "^0.12.0",
"lodash": "^4.15.0",
"node-uuid": "^1.4.7",
"pg": "^6.1.0",
"swagger-hapi": "^0.1.0",
"swagger-ui": "^2.2.3"
},
"main": "server.js",
"devDependencies": {
"coveralls": "^2.11.12",
"eslint": "^3.5.0",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-plugin-import": "^1.15.0",
"factory-girl": "^3.0.1",
"factory-girl-bookshelf": "^1.0.3",
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"nodemon": "^1.11.0",
"should": "^11.1.0",
"sinon": "^1.17.3",
"supertest": "^1.0.0"
},
"scripts": {
"e2e": "mocha --grep e2e",
"test": "node ./node_modules/.bin/istanbul cover _mocha -- --grep e2e --invert",
"posttest": "npm run lint",
"lint": "eslint .",
"precoveralls": "npm test",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"migrate": "knex migrate:latest",
"rollback": "knex migrate:rollback",
"seed": "[ \"$NODE_ENV\" != \"production\" ] && knex seed:run || echo Can\\'t run seed in production",
"start": "node --optimize_for_size --max_old_space_size=460 --gc_interval=100 server.js",
"dev": "nodemon server.js",
"reindex": "node --optimize_for_size --max_old_space_size=460 --gc_interval=100 ./tools/reindex.js"
}
}