abuseipdb-client 0.1.6 → 0.1.7

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 (1) hide show
  1. package/package.json +10 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "abuseipdb-client",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "private": false,
5
5
  "description": "AbuseIPDB Node.js API client.",
6
6
  "author": "Arthur Melo <contact@arthurmelo.com>",
@@ -34,7 +34,7 @@
34
34
  "lint": "prettier -w '{lib,test}/**/*.ts' && eslint --fix '{lib,test}/**/*.ts'",
35
35
  "docs": "typedoc",
36
36
  "prepublishOnly": "npm run test && npm run build",
37
- "prepare": "husky install",
37
+ "prepare": "is-ci || husky install",
38
38
  "semantic-release": "semantic-release"
39
39
  },
40
40
  "dependencies": {
@@ -58,12 +58,14 @@
58
58
  "@typescript-eslint/eslint-plugin": "^5.47.0",
59
59
  "@typescript-eslint/parser": "^5.47.0",
60
60
  "cross-env": "^7.0.3",
61
+ "cz-conventional-changelog": "^3.3.0",
61
62
  "dotenv": "^16.0.3",
62
63
  "eslint": "^8.30.0",
63
64
  "eslint-config-prettier": "^8.5.0",
64
65
  "eslint-plugin-jest": "^27.1.7",
65
66
  "eslint-plugin-prettier": "^4.2.1",
66
67
  "husky": "^8.0.2",
68
+ "is-ci": "^3.0.1",
67
69
  "jest": "^29.3.1",
68
70
  "jest-extended": "^3.2.0",
69
71
  "jest-fetch-mock": "^3.0.3",
@@ -94,5 +96,10 @@
94
96
  "typescript",
95
97
  "abuseipdb",
96
98
  "node"
97
- ]
99
+ ],
100
+ "config": {
101
+ "commitizen": {
102
+ "path": "./node_modules/cz-conventional-changelog"
103
+ }
104
+ }
98
105
  }