-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.05 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.05 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
{
"name": "facebook",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node index.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",
"test": "npm run db:create && npm run migrate && node ./tests/runner.js && npm run db:drop",
"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/Faceebook.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/go3three/Faceebook/issues"
},
"homepage": "https://github.com/go3three/Faceebook#readme",
"dependencies": {
"codeclimate-test-reporter": "^0.4.1",
"pg": "^6.1.2",
"shot": "^3.4.0",
"tape": "^4.6.3",
"url-parse": "^1.1.8"
},
"devDependencies": {
"istanbul": "^0.4.5"
}
}