node-persist-manager 1.0.6 → 1.0.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.
package/README.md CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/node-persist-manager.svg)](https://www.npmjs.com/package/node-persist-manager)
4
4
  [![npm downloads](https://img.shields.io/npm/dt/node-persist-manager.svg)](https://www.npmjs.com/package/node-persist-manager)
5
+ ![Node.js CI](https://github.com/Luligu/node-persist-manager/actions/workflows/build.yml/badge.svg)
5
6
 
6
7
  ---
7
8
 
@@ -95,6 +96,8 @@ await myStorage.clear();
95
96
 
96
97
  - async getStorageNames(): Promise<NodeStorageName[]>
97
98
 
99
+ - async logStorage(): Promise<void>
100
+
98
101
 
99
102
  ## NodeStorage methods:
100
103
 
package/package.json CHANGED
@@ -1,22 +1,27 @@
1
1
  {
2
2
  "name": "node-persist-manager",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Asyncronous Node.js storage manager in type script",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "MIT",
7
+ "homepage": "https://github.com/Luligu/node-persist-manager/blob/main/README.md",
7
8
  "repository": {
8
9
  "type": "git",
9
- "url": "https://github.com/Luligu/node-persist-manager"
10
+ "url": "git+https://github.com/Luligu/node-persist-manager.git"
10
11
  },
11
12
  "bugs": {
12
13
  "url": "https://github.com/Luligu/node-persist-manager/issues"
13
14
  },
14
- "engines": {
15
- "node": ">=18.0.0"
15
+ "funding": {
16
+ "type": "buymeacoffee",
17
+ "url": "https://www.buymeacoffee.com/luligugithub"
16
18
  },
17
19
  "type": "module",
18
20
  "main": "dist/nodeStorage.js",
19
21
  "types": "dist/nodeStorage.d.js",
22
+ "engines": {
23
+ "node": ">=18.0.0"
24
+ },
20
25
  "scripts": {
21
26
  "build": "tsc",
22
27
  "watch": "tsc --watch",
@@ -44,8 +49,8 @@
44
49
  "@types/jest": "^29.5.12",
45
50
  "@types/node": "^20.11.30",
46
51
  "@types/node-persist": "^3.1.8",
47
- "@typescript-eslint/eslint-plugin": "^7.3.1",
48
- "@typescript-eslint/parser": "^7.3.1",
52
+ "@typescript-eslint/eslint-plugin": "^7.4.0",
53
+ "@typescript-eslint/parser": "^7.4.0",
49
54
  "eslint": "^8.57.0",
50
55
  "jest": "^29.7.0",
51
56
  "ts-jest": "^29.1.2",
package/.gitattributes DELETED
@@ -1,2 +0,0 @@
1
- # Auto detect text files and perform LF normalization
2
- * text=auto