-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.69 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
{
"name": "expressjs-microservice",
"version": "0.0.13",
"author": "Mr. Doomsbuster",
"main": "app.js",
"description": "An opinionated minimalist boilerplate for expressjs based microservices.",
"license": "WTFPL",
"homepage": "https://ashishdesai.com",
"keywords": [
"expressjs",
"microservices",
"boilerplate",
"expressjs-boilerplate",
"api gateway",
"api",
"rest",
"expressjs microservice",
"express microservice"
],
"scripts": {
"start": "cross-env NODE_ENV=production node app.js",
"test": "cross-env NODE_ENV=test istanbul cover -x **/spec/** --print detail ./node_modules/.bin/jasmine JASMINE_CONFIG_PATH=./spec/support/jasmine.json",
"debugtest": "cross-env NODE_ENV=test istanbul cover -x **/spec/** --print detail ./node_modules/.bin/jasmine-node-debug JASMINE_CONFIG_PATH=./spec/support/jasmine.json",
"integtest": "cross-env NODE_ENV=test ./node_modules/.bin/jasmine JASMINE_CONFIG_PATH=./spec/support/jasmine-integ.json",
"dev": "cross-env NODE_ENV=development node app.js"
},
"repository": {
"type": "git",
"url": "https://github.com/doomsbuster/expressjs-microservice.git"
},
"dependencies": {
"body-parser": "~1.10.1",
"cookie-parser": "~1.3.3",
"express": "^4.16.2",
"hbs": "^4.0.1",
"request": "^2.87.0",
"request-promise-native": "^1.0.5",
"serve-favicon": "^2.4.5",
"sinon": "^4.1.3",
"swagger-jsdoc": "^1.9.7",
"winston": "^2.4.0",
"winston-daily-rotate-file": "^1.7.2"
},
"devDependencies": {
"chai": "^4.1.2",
"cross-env": "^5.1.3",
"istanbul": "^0.4.5",
"jasmine": "^2.8.0",
"jasmine-spec-reporter": "^4.2.1",
"supertest": "^3.0.0"
}
}