@mountainpass/addressr 1.1.5 → 1.1.6

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/lib/version.js +1 -1
  2. package/package.json +11 -28
package/lib/version.js CHANGED
@@ -4,4 +4,4 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  // Generated by genversion.
7
- const version = exports.version = '1.1.5';
7
+ const version = exports.version = '1.1.6';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mountainpass/addressr",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "description": "Australian Address Validation, Search and Autocomplete",
5
5
  "author": {
6
6
  "name": "Mountain Pass",
@@ -116,7 +116,7 @@
116
116
  "predocker:push": "echo \"$DOCKER_ID_PASS\" | docker login --username \"$DOCKER_ID_USER\" --password-stdin",
117
117
  "docker:push": "docker push \"mountainpass/addressr:${npm_package_version}\"",
118
118
  "postdocker:push": "docker push \"mountainpass/addressr:latest\"",
119
- "check-licenses": "license-checker --production --onlyAllow 'MIT;Apache-2.0;ISC;Custom: http://github.com/substack/node-bufferlist;Unlicense;BSD-2-Clause;BSD-3-Clause;WTFPL;0BSD;MIT*' --summary",
119
+ "check-licenses": "license-checker --production --onlyAllow 'MIT;Apache-2.0;ISC;Custom: http://github.com/substack/node-bufferlist;Unlicense;BSD-2-Clause;BSD-3-Clause;WTFPL;0BSD;MIT*;Python-2.0;MPL-2.0' --summary",
120
120
  "pre-commit": "lint-staged && npm run check-licenses",
121
121
  "check-deps": "dry-aged-deps --check",
122
122
  "test:performance": "k6 run --out csv=target/stress.csv test/k6/script.js",
@@ -125,7 +125,8 @@
125
125
  "ci:publish": "[ \"$CI\" = true ] && changeset publish || echo \"Dry run: changeset publish\"",
126
126
  "push:watch": "bash scripts/push-and-watch.sh",
127
127
  "release:watch": "bash scripts/release-watch.sh",
128
- "test:hooks": "bats .claude/hooks/test/"
128
+ "test:hooks": "bats .claude/hooks/test/",
129
+ "prepare": "husky"
129
130
  },
130
131
  "bin": {
131
132
  "addressr-loader": "lib/bin/addressr-loader.js",
@@ -213,12 +214,12 @@
213
214
  "eslint-plugin-security": "^1.4.0",
214
215
  "eslint-plugin-unicorn": "^34.0.1",
215
216
  "genversion": "^3.0.0",
216
- "husky": "^7.0.0",
217
- "imagemin-lint-staged": "^0.4.0",
217
+ "husky": "^9.1.7",
218
+ "imagemin-lint-staged": "^0.5.1",
218
219
  "istanbul": "^0.4.5",
219
220
  "istanbul-middleware": "^0.2.2",
220
221
  "license-checker": "^25.0.1",
221
- "lint-staged": "^11.0.0",
222
+ "lint-staged": "^15.5.2",
222
223
  "nodemon": "^2.0.4",
223
224
  "npm-check": "^5.9.0",
224
225
  "npm-run-all": "^4.1.5",
@@ -235,27 +236,9 @@
235
236
  },
236
237
  "homepage": "https://addressr.io",
237
238
  "lint-staged": {
238
- "*.{js,jsx}": [
239
- "eslint --fix",
240
- "git add"
241
- ],
242
- "*.{json,css,md}": [
243
- "prettier --write",
244
- "git add"
245
- ],
246
- "*.{png,jpeg,jpg,gif,svg}": [
247
- "imagemin-lint-staged",
248
- "git add"
249
- ],
250
- ".circleci/config.yml": [
251
- "circleci config validate",
252
- "git add"
253
- ]
254
- },
255
- "husky": {
256
- "hooks": {
257
- "pre-commit": "npm run pre-commit",
258
- "pre-push": "npm run check-deps"
259
- }
239
+ "*.{js,jsx}": "eslint --fix",
240
+ "*.{json,css,md}": "prettier --write",
241
+ "*.{png,jpeg,jpg,gif,svg}": "imagemin-lint-staged",
242
+ ".circleci/config.yml": "circleci config validate"
260
243
  }
261
244
  }