Skip to content

Commit 3fd94c1

Browse files
committed
Updates versions of dependencies.
1 parent 015bcb7 commit 3fd94c1

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

.mocharc.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
exit: true # could be expressed as "no-exit: true"
2+
recursive: true
3+
reporter: spec
4+
require:
5+
- 'test/global.js'
6+
slow: 5000
7+
timeout: 5000 # same as "no-timeout: true" or "timeout: 0"

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,9 @@ node_js:
77
- "10"
88
- "11"
99
- "12"
10+
- "13"
11+
- "14"
1012
sudo: false
11-
cache:
12-
directories:
13-
- node_modules
1413
before_script:
1514
- npm install && npm install coveralls mocha-lcov-reporter --save-dev
1615
script:

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "query-strings-parser",
3-
"version": "2.1.4",
3+
"version": "2.1.5",
44
"description": "Middleware to transform query strings in a format that is recognized by the MongoDB, MySQL and other databases...",
55
"license": "MIT",
66
"main": "index.js",
77
"scripts": {
8-
"test": "nyc --clean --all --reporter=text-summary mocha --opts test/mocha.opts test/**/*.spec.js",
9-
"test:unit": "nyc --clean --all --reporter=text-summary mocha --opts test/mocha.opts test/unit/*.spec.js",
10-
"test:integration": "nyc --clean --all --reporter=text-summary mocha --opts test/mocha.opts test/integration/*.spec.js",
11-
"test:cov": "nyc --clean --all --reporter=html --reporter=text mocha --opts test/mocha.opts test/**/*.spec.js"
8+
"test": "nyc --clean --all --reporter=text-summary mocha test/**/*.spec.js",
9+
"test:unit": "nyc --clean --all --reporter=text-summary mocha test/unit/*.spec.js",
10+
"test:integration": "nyc --clean --all --reporter=text-summary mocha test/integration/*.spec.js",
11+
"test:cov": "nyc --clean --all --reporter=html --reporter=text mocha test/**/*.spec.js"
1212
},
1313
"directories": {
1414
"lib": "lib",
@@ -44,8 +44,8 @@
4444
"devDependencies": {
4545
"chai": "^4.2.0",
4646
"express": "^4.17.1",
47-
"mocha": "^6.2.1",
48-
"nyc": "^14.1.1",
47+
"mocha": "^7.2.0",
48+
"nyc": "^15.1.0",
4949
"supertest": "^4.0.2"
5050
}
5151
}

test/mocha.opts

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)