abuseipdb-client 0.1.0 → 0.1.2

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,6 @@
1
+ ## [0.1.2](https://github.com/arthur-melo/abuseipdb-client/compare/v0.1.1...v0.1.2) (2022-12-21)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **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
 
@@ -140,7 +141,7 @@ if (result) {
140
141
  console.log(headers);
141
142
  ```
142
143
 
143
- A more detailed explanation can be found at: [examples/abstraction.ts](https://github.com/arthur-melo/abuseipdb-client/examples/abstraction.ts).
144
+ A more detailed explanation can be found at: [examples/abstraction.ts](https://github.com/arthur-melo/abuseipdb-client/tree/main/examples/abstraction.ts).
144
145
 
145
146
  ## API
146
147
 
@@ -148,7 +149,7 @@ See [API Docs](https://arthur-melo.github.io/abuseipdb-client/)
148
149
 
149
150
  ## Examples
150
151
 
151
- See [Examples](https://github.com/arthur-melo/abuseipdb-client/examples/)
152
+ See [Examples](https://github.com/arthur-melo/abuseipdb-client/tree/main/examples)
152
153
 
153
154
  ## Running tests
154
155
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "abuseipdb-client",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
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"