@mountainpass/waychaser 5.0.17 → 5.0.19

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 +11 -20
package/README.md CHANGED
@@ -71,7 +71,7 @@ try {
71
71
  ```html
72
72
  <script
73
73
  type="text/javascript"
74
- src="https://unpkg.com/@mountainpass/waychaser@5.0.17"
74
+ src="https://unpkg.com/@mountainpass/waychaser@5.0.19"
75
75
  ></script>
76
76
 
77
77
  ...
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mountainpass/waychaser",
3
- "version": "5.0.17",
3
+ "version": "5.0.19",
4
4
  "description": "Client library for HATEOAS level 3 RESTful APIs that provide hypermedia controls",
5
5
  "repository": {
6
6
  "type": "git",
@@ -42,12 +42,14 @@
42
42
  },
43
43
  "overrides": {
44
44
  "serialize-javascript": "^6.0.2",
45
- "@types/lodash": "4.14.202"
45
+ "@types/lodash": "4.14.202",
46
+ "@types/markdown-it": "12.2.0"
46
47
  },
47
48
  "config": {
48
49
  "TEST_API_PORT": 6060
49
50
  },
50
51
  "scripts": {
52
+ "prepare": "husky",
51
53
  "dry-aged-deps": "dry-aged-deps --check",
52
54
  "env": "env",
53
55
  "build:browser": "rollup --config rollup.config.${npm_lifecycle_event#build:}.mjs",
@@ -202,12 +204,12 @@
202
204
  "geckodriver": "^1.20.0",
203
205
  "http-terminator": "^3.0.0",
204
206
  "humanize-duration": "^3.24.0",
205
- "husky": "^6.0.0",
207
+ "husky": "^9.1.7",
206
208
  "imagemin-lint-staged": "^0.5.1",
207
209
  "istanbul": "^0.4.5",
208
210
  "jscpd": "^3.3.25",
209
211
  "jsdoc": "^3.6.7",
210
- "lint-staged": "^11.0.0",
212
+ "lint-staged": "^15.5.2",
211
213
  "localtunnel": "^2.0.1",
212
214
  "markdownlint": "^0.23.0",
213
215
  "moment-timezone": "^0.6.0",
@@ -231,28 +233,17 @@
231
233
  "zod": "^3.15.1"
232
234
  },
233
235
  "lint-staged": {
234
- "*.{js,md}": [
235
- "eslint --fix",
236
- "git add"
236
+ "*.js": [
237
+ "eslint --fix"
237
238
  ],
238
239
  "*.{sh}": [
239
- "shellcheck",
240
- "git add"
240
+ "shellcheck"
241
241
  ],
242
242
  "*.{json,css,md,yaml,yml,html,less,scss}": [
243
- "prettier --write",
244
- "git add"
243
+ "prettier --write"
245
244
  ],
246
245
  "*.{png,jpeg,jpg,gif,svg}": [
247
- "imagemin-lint-staged",
248
- "git add"
246
+ "imagemin-lint-staged"
249
247
  ]
250
- },
251
- "husky": {
252
- "hooks": {
253
- "pre-commit": "lint-staged",
254
- "pre-push": "npm run pre-push",
255
- "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
256
- }
257
248
  }
258
249
  }