addons-scanner-utils 9.0.0 → 9.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -12,7 +12,7 @@ yarn add addons-scanner-utils
12
12
 
13
13
  ## Requirements
14
14
 
15
- - You need [Node](https://nodejs.org/) 14, which is the current [LTS](https://github.com/nodejs/LTS) (long term support) release.
15
+ - You need [Node](https://nodejs.org/) 16, which is the current [LTS](https://github.com/nodejs/LTS) (long term support) release.
16
16
  - You need [yarn](https://yarnpkg.com/en/) to manage dependencies and run commands.
17
17
 
18
18
  ## Development
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "addons-scanner-utils",
3
- "version": "9.0.0",
3
+ "version": "9.2.0",
4
4
  "description": "Various addons related helpers to build CLIs.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -41,7 +41,7 @@
41
41
  "@types/common-tags": "^1.8.0",
42
42
  "@types/express": "4.17.17",
43
43
  "@types/jest": "^29.0.0",
44
- "@types/node": "^18.0.0",
44
+ "@types/node": "^20.1.1",
45
45
  "@types/node-fetch": "^2.6.2",
46
46
  "@types/safe-compare": "^1.1.0",
47
47
  "@types/sinon": "^10.0.0",
@@ -55,9 +55,9 @@
55
55
  "express": "4.18.2",
56
56
  "jest": "^29.0.0",
57
57
  "node-fetch": "2.6.7",
58
- "prettier": "2.8.6",
58
+ "prettier": "2.8.8",
59
59
  "pretty-quick": "^3.0.0",
60
- "rimraf": "^4.4.0",
60
+ "rimraf": "^5.0.0",
61
61
  "safe-compare": "1.1.4",
62
62
  "sinon": "^15.0.0",
63
63
  "supertest": "^6.0.0",
@@ -68,7 +68,7 @@
68
68
  "scripts": {
69
69
  "eslint": "eslint --ext ts --ext js src/",
70
70
  "lint": "yarn eslint",
71
- "prepack": "rimraf dist/ && tsc --outDir dist/ && rimraf dist/**/*.spec.* dist/*.spec.*",
71
+ "prepack": "rimraf dist/ && tsc --outDir dist/ && rimraf -g 'dist/**/*.spec.*' 'dist/*.spec.*'",
72
72
  "prettier": "prettier --write '**'",
73
73
  "prettier-ci": "prettier --list-different '**' || (echo '\n\nThis failure means you did not run `yarn prettier-dev` before committing\n\n' && exit 1)",
74
74
  "prettier-dev": "pretty-quick --branch master",