-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "microservice",
"version": "1.0.0",
"description": "RESTful Microservice skeleton",
"main": "service.js",
"scripts": {
"start": "export NODE_ENV=production; node app.js",
"serve": "export NODE_ENV=development; nodemon app.js",
"pretest": "jshint --reporter=node_modules/jshint-stylish **/**.js",
"test": "export NODE_ENV=test; mocha test/setup.js test/**/**.js"
},
"author": "Andras Popovics",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/popovicsandras/microservice.git"
},
"dependencies": {
"config": "^1.16.0",
"country-data": "0.0.23",
"express": "^4.13.3",
"geoip-lite": "^1.1.6",
"morgan": "^1.6.1",
"node-geolite2": "^0.1.7",
"swagger-ui": "^2.1.3",
"swagger-ui-middleware": "^1.0.0"
},
"devDependencies": {
"chai": "^3.2.0",
"jshint": "^2.8.0",
"jshint-stylish": "^2.0.1",
"mocha": "^2.3.2",
"nodemon": "^1.6.1",
"sinon": "^1.16.1",
"sinon-chai": "^2.8.0",
"supertest": "^1.1.0"
}
}