Skip to content

Commit

Permalink
chore: dependency cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
nmccready committed Sep 12, 2024
1 parent 3ddbe56 commit 9f1ea53
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 20 deletions.
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,8 @@ bower_components/
package-lock.json
crashes.json
.history
.editorconfig
.prettierrc.js
.eslint*
!.eslintrc.js
.tmp
babel.config.js
*.lock

docs/website/*.md
Expand Down
20 changes: 7 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,13 @@
"scripts": {
"build": "npm run gulp default && npm run roll:it",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"docs:api:markdown": "npm run typedoc --theme markdown --exclude ./src/test --out ./docs/api ./src",
"docs:api:website": "npm run typedoc --exclude ./src/test --out docs ./src",
"docs:api:markdown": "npx typedoc --theme markdown --exclude ./src/test --out ./docs/api ./src",
"docs:api:website": "npx typedoc --exclude ./src/test --out docs ./src",
"gulp": "node -r esm ./node_modules/.bin/gulp",
"jest": "node -r esm ./node_modules/.bin/jest",
"lint": "eslint --ext .js,.ts,.tsx *.js src test --color",
"mocha": "mocha",
"postinstall:1": "js-common-editorconfig-clone && js-common-babel-config-clone",
"postinstall:2": "js-common-prettierrc-clone",
"prepare": "npm run postinstall:1 && npm run postinstall:2 && sort-package-json",
"prepare": "npx sort-package-json",
"roll:it": "rollup -c ./rollup.config.ts",
"test": "npm run lint && npm run jest",
"test:ci": "npm run build && npm run test --coverage && npm run coveralls",
Expand All @@ -43,16 +41,12 @@
"memoizee": "0.4"
},
"devDependencies": {
"@biiaidt/node-memwatch": "2.0.1",
"@commitlint/cli": "^19",
"@commitlint/config-conventional": "^19",
"@raghb1/node-memwatch": "^3.0.1",
"@types/debug": "^4",
"@znemz/js-common-babel-config": "^0.0.23",
"@znemz/js-common-babel-config-clone": "^0.0.23",
"@znemz/js-common-editorconfig-clone": "^0.0.23",
"@znemz/js-common-eslint-config": "^0.2.1",
"@znemz/js-common-gulp-monorepo-typescript": "^0.0.23",
"@znemz/js-common-prettierrc-clone": "^0.0.23",
"@znemz/js-common-babel-config": "^0.2.1",
"@znemz/js-common-eslint-config": "^0.2.2",
"@znemz/react-extras-jest": "^1.1.0",
"JSONStream": "1.X",
"bluebird": "^3.5.5",
Expand All @@ -69,7 +63,7 @@
"rollup": "^1.20.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-typescript": "^1.0.1",
"sort-package-json": "^1.21.0",
"sort-package-json": "^2.10.1",
"typedoc": "~0.15.0",
"typedoc-plugin-markdown": "~2.1.4",
"typescript": "~4.4"
Expand Down
2 changes: 1 addition & 1 deletion test/helpers/watchLeaks.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const memwatch = require('@raghb1/node-memwatch');
const memwatch = require('@biiaidt/node-memwatch');
/* eslint-disable no-console */

const watchLeaks = () => {
Expand Down
2 changes: 1 addition & 1 deletion test/perf/perfWith.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const fs = require('fs');
const JSONStream = require('JSONStream');
const memwatch = require('@raghb1/node-memwatch');
const memwatch = require('@biiaidt/node-memwatch');
const debug = require('../../lib')
.spawnable(require('../../package.json').name)
.spawn('perf');
Expand Down
2 changes: 1 addition & 1 deletion test/perf/perfWithout.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const fs = require('fs');
const JSONStream = require('JSONStream');
const memwatch = require('@raghb1/node-memwatch');
const memwatch = require('@biiaidt/node-memwatch');
const debug = require('debug')(`${require('../../package.json').name}:perf`);
/* eslint-disable no-console */

Expand Down

0 comments on commit 9f1ea53

Please sign in to comment.