-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.41 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.41 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
47
48
49
50
51
{
"name": "goblog",
"version": "1.0.0",
"description": "blog",
"main": "server.js",
"scripts": {
"test": "npm run db:create && npm run migrate && node ./tests/runner.js && npm run db:drop",
"start": "node scripts/migrate.js && node server.js",
"db:create": "psql -c 'CREATE DATABASE test;' -U postgres -h localhost",
"db:drop": "psql -c 'DROP DATABASE test;' -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"
},
"repository": {
"type": "git",
"url": "https://github.com/go3three/goBlog.git"
},
"keywords": [
"blog",
"blog",
"blog",
"blog"
],
"author": "Ghada , Mohammed , Akram",
"license": "ISC",
"bugs": {
"url": "https://github.com/go3three/goBlog/issues"
},
"homepage": "https://github.com/go3three/goBlog#readme",
"dependencies": {
"env2": "^2.1.1",
"handlebars": "^4.0.6",
"hapi": "^16.1.0",
"hapi-flash": "^1.1.1",
"hapi-postgres-connection": "^6.1.0",
"hoek": "^4.1.0",
"inert": "^4.1.0",
"istanbul": "^0.4.5",
"joi": "^10.2.2",
"pg": "^6.1.4",
"url-parse": "^1.1.8",
"vision": "^4.1.1",
"yar": "^8.1.2"
},
"devDependencies": {
"codeclimate-test-reporter": "^0.4.1",
"shot": "^3.4.0",
"tape": "^4.6.3"
}
}