-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.43 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
{
"name": "gothenticate",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "npm run db:create && npm run migrate && node ./tests/runner.js && npm run db:drop",
"start": "npm run db:create && node scripts/migrate.js && node index.js",
"db:create": "psql -c 'CREATE DATABASE tests;' -U postgres -h localhost",
"db:drop": "psql -c 'DROP DATABASE tests;' -U postgres -h localhost",
"migrate": "node scripts/migrate.js",
"cov": "npm run db:create && npm run migrate && ./node_modules/.bin/istanbul cover tests/runner.js && npm run db:drop",
"dev:test": "nodemon ./tests/index.js",
"alaa": "node ./tests/runner.js",
"alaacov": "./node_modules/.bin/istanbul cover tests/runner.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coStars/gothenticate.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/coStars/gothenticate/issues"
},
"homepage": "https://github.com/coStars/gothenticate#readme",
"dependencies": {
"aguid": "^2.0.0",
"assert": "^1.4.1",
"bcrypt": "^1.0.2",
"boom": "^4.3.0",
"codeclimate-test-reporter": "^0.4.1",
"env2": "^2.1.1",
"hapi": "^16.1.0",
"hapi-auth-jwt2": "^7.2.4",
"inert": "^4.1.0",
"istanbul": "^0.4.5",
"joi": "^10.2.2",
"pg": "^6.1.5",
"vision": "^4.1.1"
},
"devDependencies": {
"shot": "^3.4.0",
"tape": "^4.6.3"
}
}