-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.76 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
{
"name": "population-management-api",
"version": "1.0.0",
"description": "Population Management API manages the list of locations and the total number of residents in each location broken down by gender.",
"main": "index.js",
"scripts": {
"start-dev": "nodemon --exec babel-node server/index",
"postinstall": "babel server -d dist -s",
"start": "node dist/index.js",
"test": "NODE_ENV=test nyc --reporter=text --reporter=lcov mocha --require @babel/register tests/index.spec.js --exit",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Felglitzzz/Population-Management-API.git"
},
"author": "Felix Amande",
"license": "ISC",
"bugs": {
"url": "https://github.com/Felglitzzz/Population-Management-API/issues"
},
"homepage": "https://github.com/Felglitzzz/Population-Management-API#readme",
"dependencies": {
"@babel/runtime": "^7.3.4",
"body-parser": "^1.18.3",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"mongoose": "^5.4.18"
},
"nyc": {
"exclude": [
"test/**",
"server/database/index.js"
]
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/plugin-transform-regenerator": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"eslint": "^5.14.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"jest": "^24.0.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.18.10",
"nyc": "^13.1.0",
"supertest": "^3.4.2"
}
}