Skip to content

Commit 624e7ea

Browse files
author
hirsch88
committed
Merge branch 'release/1.4.0' into develop
2 parents 00b073d + a9645f4 commit 624e7ea

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
{
22
"name": "express-typescript-boilerplate",
3-
"version": "1.3.0",
3+
"version": "1.4.0",
44
"description": "A delightful way to building a RESTful API with NodeJs & TypeScript",
55
"main": "src/index.ts",
66
"scripts": {
77
"lint": "./node_modules/.bin/gulp lint",
8-
"test": "NODE_ENV=test ./node_modules/.bin/jest ./test/unit --verbose --coverage",
9-
"test:black-box": "NODE_ENV=test ./node_modules/.bin/jest ./test/black-box -i --verbose",
8+
"test": "NODE_ENV=test ./node_modules/.bin/jest ./test/unit",
9+
"test:pretty": "NODE_ENV=test ./node_modules/.bin/jest ./test/unit --verbose",
10+
"test:coverage": "NODE_ENV=test ./node_modules/.bin/jest ./test/unit --coverage",
11+
"test:black-box": "NODE_ENV=test ./node_modules/.bin/jest ./test/black-box -i",
12+
"test:black-box:pretty": "NODE_ENV=test ./node_modules/.bin/jest ./test/black-box -i --verbose",
1013
"build": "./node_modules/.bin/gulp build",
1114
"clean": "./node_modules/.bin/gulp clean",
1215
"db:migrate": "./node_modules/.bin/knex migrate:latest",

0 commit comments

Comments
 (0)