Skip to content
This repository has been archived by the owner on Jan 28, 2024. It is now read-only.

Commit

Permalink
Merge pull request #100 from Fdawgs/chore/deps
Browse files Browse the repository at this point in the history
Reduce repo size
  • Loading branch information
Fdawgs committed Jan 28, 2021
2 parents efe5c80 + 0342eba commit ab7b973
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 30 deletions.
31 changes: 6 additions & 25 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@
"src/**/*.js",
"!src/app.js"
],
"coverageReporters": [
"text",
"lcovonly"
],
"resetMocks": true,
"testEnvironment": "node",
"testTimeout": 10000
Expand Down Expand Up @@ -65,7 +69,6 @@
"@commitlint/config-conventional": "^11.0.0",
"autocannon": "^7.0.3",
"conventional-changelog-cli": "^2.1.1",
"coveralls": "^3.1.0",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
Expand All @@ -79,7 +82,7 @@
"husky": "^4.3.8",
"jest": "^26.6.3",
"license-checker": "^25.0.1",
"lodash": "^4.17.20",
"lodash.clonedeep": "^4.5.0",
"nodemon": "^2.0.7",
"pino-pretty": "^4.3.0",
"prettier": "2.2.1"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-disable no-console */
const cloneDeep = require("lodash/cloneDeep");
const cloneDeep = require("lodash.clonedeep");
const faker = require("faker/locale/en_GB");
const Fastify = require("fastify");
const plugin = require(".");
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const cloneDeep = require("lodash/cloneDeep");
const cloneDeep = require("lodash.clonedeep");
const faker = require("faker/locale/en_GB");
const Fastify = require("fastify");
const plugin = require(".");
Expand Down
2 changes: 1 addition & 1 deletion src/server.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-disable no-console */
const cloneDeep = require("lodash/cloneDeep");
const cloneDeep = require("lodash.clonedeep");
const faker = require("faker/locale/en_GB");
const Fastify = require("fastify");
const queryString = require("querystring");
Expand Down

0 comments on commit ab7b973

Please sign in to comment.