abuseipdb-client 0.1.1 → 0.1.3

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.
package/CHANGELOG.md ADDED
@@ -0,0 +1,13 @@
1
+ ## [0.1.3](https://github.com/arthur-melo/abuseipdb-client/compare/v0.1.2...v0.1.3) (2022-12-21)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **semantic-release:** Using engines package.json field ([#4](https://github.com/arthur-melo/abuseipdb-client/issues/4)) ([f22d3f1](https://github.com/arthur-melo/abuseipdb-client/commit/f22d3f1e4fd7fb12dfda620ed14d88f02e485e2c))
7
+
8
+ ## [0.1.2](https://github.com/arthur-melo/abuseipdb-client/compare/v0.1.1...v0.1.2) (2022-12-21)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **ci:** Added missing semantic-release config ([#3](https://github.com/arthur-melo/abuseipdb-client/issues/3)) ([e32f07d](https://github.com/arthur-melo/abuseipdb-client/commit/e32f07d6ef5591983c370b1629606350821533db))
package/README.md CHANGED
@@ -8,6 +8,7 @@
8
8
  </h1>
9
9
 
10
10
  ![License](https://img.shields.io/github/license/arthur-melo/abuseipdb-client)
11
+ ![Codecov](https://img.shields.io/codecov/c/github/arthur-melo/abuseipdb-client)
11
12
 
12
13
  Unofficial [AbuseIPDB](https://www.abuseipdb.com/) Node.js client library.
13
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "abuseipdb-client",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "private": false,
5
5
  "description": "AbuseIPDB Node.js API client.",
6
6
  "author": "Arthur Melo <contact@arthurmelo.com>",
@@ -34,7 +34,8 @@
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": "husky install",
38
+ "semantic-release": "semantic-release"
38
39
  },
39
40
  "dependencies": {
40
41
  "fetch-blob": "^3.2.0",
@@ -48,6 +49,9 @@
48
49
  "@rollup/plugin-commonjs": "^24.0.0",
49
50
  "@rollup/plugin-json": "^6.0.0",
50
51
  "@rollup/plugin-node-resolve": "^15.0.1",
52
+ "@semantic-release/changelog": "^6.0.2",
53
+ "@semantic-release/git": "^10.0.1",
54
+ "@semantic-release/npm": "^9.0.1",
51
55
  "@types/jest": "^29.2.4",
52
56
  "@types/node-fetch": "^2.6.2",
53
57
  "@types/validator": "^13.7.10",
@@ -71,6 +75,7 @@
71
75
  "rollup-plugin-bundle-size": "^1.0.3",
72
76
  "rollup-plugin-dts": "^5.0.0",
73
77
  "rollup-plugin-typescript2": "^0.34.1",
78
+ "semantic-release": "^19.0.5",
74
79
  "ts-jest": "^29.0.3",
75
80
  "ts-node": "^10.9.1",
76
81
  "tslib": "^2.4.1",
@@ -80,7 +85,7 @@
80
85
  },
81
86
  "repository": {
82
87
  "type": "git",
83
- "url": "git+https://github.com/arthur-melo/abuseipdb-client.git"
88
+ "url": "https://github.com/arthur-melo/abuseipdb-client.git"
84
89
  },
85
90
  "bugs": {
86
91
  "url": "https://github.com/arthur-melo/abuseipdb-client/issues"