-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.49 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
{
"name": "population-management-system",
"version": "1.0.0",
"description": "Population Management System for managing locations and the total number of residents in each location broken down by gender",
"main": "index.js",
"dependencies": {
"body-parser": "^1.18.2",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"pg": "^7.4.1",
"pg-hstore": "^2.3.2",
"sequelize": "^4.37.4",
"sequelize-cli": "^4.0.0",
"winston": "^3.0.0-rc3"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"faker": "^4.1.0",
"istanbul": "^0.4.5",
"mocha": "^5.0.5",
"nodemon": "^1.17.2",
"supertest": "^3.0.0"
},
"scripts": {
"coverage": "NODE_ENV=test && rm -rf coverage/ && istanbul cover _mocha -- --exit ./test/**/*.test.js",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls",
"db-init": "sequelize init",
"migrations": "sequelize db:migrate",
"start": "node index.js",
"start-dev": "nodemon index.js",
"test": "NODE_ENV=test && mocha --exit './test/**/*.test.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/azeezolaniran2016/population-management-system.git"
},
"keywords": [
"Population",
"Management",
"System"
],
"author": "Azeez Olaniran",
"license": "MIT",
"bugs": {
"url": "https://github.com/azeezolaniran2016/population-management-system/issues"
},
"homepage": "https://github.com/azeezolaniran2016/population-management-system#readme"
}