node-pkware 1.0.0 → 1.0.1
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 +1 -1
- package/package.json +18 -14
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ It was the de-facto compression for games from around Y2K, like Arx Fatalis
|
|
|
8
8
|
|
|
9
9
|
`npm i -g node-pkware`
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
minimum required node version: 8.5+
|
|
12
12
|
|
|
13
13
|
development and testing should be done in node 12.3+ because of the tests utilizing `Readable.from()` - source: https://stackoverflow.com/a/59638132/1806628
|
|
14
14
|
|
package/package.json
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-pkware",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "The nodejs implementation of StormLib's pkware compressor/de-compressor",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"types": "types/index.d.ts",
|
|
7
|
+
"engines": {
|
|
8
|
+
"npm": ">=5.3.0",
|
|
9
|
+
"node": ">=8.5.0"
|
|
10
|
+
},
|
|
7
11
|
"bin": {
|
|
8
12
|
"explode": "bin/explode.js",
|
|
9
13
|
"implode": "bin/implode.js"
|
|
@@ -28,29 +32,29 @@
|
|
|
28
32
|
"author": "Lajos Meszaros <m_lajos@hotmail.com>",
|
|
29
33
|
"license": "GPL-3.0-or-later",
|
|
30
34
|
"dependencies": {
|
|
31
|
-
"minimist-lite": "^2.
|
|
32
|
-
"ramda": "^0.
|
|
33
|
-
"ramda-adjunct": "^
|
|
35
|
+
"minimist-lite": "^2.2.1",
|
|
36
|
+
"ramda": "^0.28.0",
|
|
37
|
+
"ramda-adjunct": "^3.1.0"
|
|
34
38
|
},
|
|
35
39
|
"devDependencies": {
|
|
36
|
-
"arx-header-size": "^0.
|
|
40
|
+
"arx-header-size": "^0.7.0",
|
|
37
41
|
"binary-comparator": "^0.5.0",
|
|
38
|
-
"eslint": "^8.
|
|
39
|
-
"eslint-config-prettier": "^8.
|
|
42
|
+
"eslint": "^8.15.0",
|
|
43
|
+
"eslint-config-prettier": "^8.5.0",
|
|
40
44
|
"eslint-config-prettier-standard": "^4.0.1",
|
|
41
|
-
"eslint-config-standard": "^
|
|
42
|
-
"eslint-plugin-import": "^2.
|
|
45
|
+
"eslint-config-standard": "^17.0.0",
|
|
46
|
+
"eslint-plugin-import": "^2.26.0",
|
|
43
47
|
"eslint-plugin-node": "^11.1.0",
|
|
44
48
|
"eslint-plugin-prettier": "^4.0.0",
|
|
45
49
|
"eslint-plugin-promise": "^6.0.0",
|
|
46
50
|
"eslint-plugin-ramda": "^2.5.1",
|
|
47
51
|
"eslint-plugin-standard": "^4.1.0",
|
|
48
|
-
"lint-staged": "^12.1
|
|
49
|
-
"mocha": "^
|
|
50
|
-
"nodemon": "^2.0.
|
|
52
|
+
"lint-staged": "^12.4.1",
|
|
53
|
+
"mocha": "^10.0.0",
|
|
54
|
+
"nodemon": "^2.0.16",
|
|
51
55
|
"pre-commit": "^1.2.2",
|
|
52
|
-
"prettier": "^2.
|
|
53
|
-
"prettier-config-standard": "^
|
|
56
|
+
"prettier": "^2.6.2",
|
|
57
|
+
"prettier-config-standard": "^5.0.0"
|
|
54
58
|
},
|
|
55
59
|
"pre-commit": [
|
|
56
60
|
"lint:staged",
|