-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.15 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": "mem-geo-service",
"version": "1.0.0",
"description": "A microservice created to support data export functionality within the Ministry of Energy and Mines.",
"main": "server.js",
"scripts": {
"lint": "eslint **/*.js",
"pretest": "npm run lint",
"test": "mocha -R spec server/**/*.spec.js",
"start": "node server.js",
"dev": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bcgov/mem-geo-service.git"
},
"keywords": [
"bcgov",
"mem"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bcgov/mem-geo-service/issues"
},
"homepage": "https://github.com/bcgov/mem-geo-service#readme",
"dependencies": {
"body-parser": "^1.17.2",
"compression": "^1.6.2",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"helmet": "^3.6.1",
"http-status": "^1.0.1",
"lodash": "^4.17.4",
"morgan": "^1.8.2",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"winston": "^2.3.1"
},
"devDependencies": {
"eslint": "^4.1.1",
"mocha": "^3.4.2",
"nodemon": "^1.11.0",
"should": "^11.2.1",
"supertest": "^3.0.0"
}
}