gzip-stream 1.1.2 → 2.0.0
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/lib.js +1 -1
- package/package.json +12 -5
- package/CHANGELOG.md +0 -44
package/lib.js
CHANGED
package/package.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gzip-stream",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib.js",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"prepare": "./node_modules/.bin/coffee -c lib.coffee"
|
|
7
|
+
"prepare": "./node_modules/.bin/coffee -c lib.coffee",
|
|
8
|
+
"test": ""
|
|
8
9
|
},
|
|
9
10
|
"files": [
|
|
10
11
|
"lib.js"
|
|
11
12
|
],
|
|
13
|
+
"engines": {
|
|
14
|
+
"node": ">=16"
|
|
15
|
+
},
|
|
12
16
|
"homepage": "https://github.com/balena-io-modules/gzip-stream",
|
|
13
17
|
"repository": {
|
|
14
18
|
"type": "git",
|
|
@@ -17,14 +21,17 @@
|
|
|
17
21
|
"bugs": {
|
|
18
22
|
"url": "https://github.com/balena-io-modules/gzip-stream/issues"
|
|
19
23
|
},
|
|
20
|
-
"author": "",
|
|
21
|
-
"license": "
|
|
24
|
+
"author": "Balena Ltd. <hello@balena.io>",
|
|
25
|
+
"license": "Apache-2.0",
|
|
22
26
|
"dependencies": {
|
|
23
|
-
"@balena/node-crc-utils": "^
|
|
27
|
+
"@balena/node-crc-utils": "^3.0.0",
|
|
24
28
|
"combined-stream": "^1.0.8",
|
|
25
29
|
"crc32-stream": "^4.0.0"
|
|
26
30
|
},
|
|
27
31
|
"devDependencies": {
|
|
28
32
|
"coffeescript": "^2.5.1"
|
|
33
|
+
},
|
|
34
|
+
"versionist": {
|
|
35
|
+
"publishedAt": "2023-01-20T16:07:44.578Z"
|
|
29
36
|
}
|
|
30
37
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file
|
|
4
|
-
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
|
|
5
|
-
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
|
-
|
|
7
|
-
# v1.1.2
|
|
8
|
-
## (2020-11-30)
|
|
9
|
-
|
|
10
|
-
* Add versionbot changelog [Alexis Svinartchouk]
|
|
11
|
-
|
|
12
|
-
# v1.1.1
|
|
13
|
-
## (2020-11-13)
|
|
14
|
-
|
|
15
|
-
* Update resin-crc-utils -> @balena/node-crc-utils [Alexis Svinartchouk]
|
|
16
|
-
|
|
17
|
-
# v1.1.0
|
|
18
|
-
## (2020-09-15)
|
|
19
|
-
|
|
20
|
-
* Export GZIP_HEADER and DEFLATE_END [Alexis Svinartchouk]
|
|
21
|
-
* Remove lodash dependency [Alexis Svinartchouk]
|
|
22
|
-
|
|
23
|
-
# v1.0.1
|
|
24
|
-
## (2020-09-14)
|
|
25
|
-
|
|
26
|
-
* Fix calls to no longer existing lodash pluck [Alexis Svinartchouk]
|
|
27
|
-
|
|
28
|
-
# v1.0.0
|
|
29
|
-
## (2020-09-10)
|
|
30
|
-
|
|
31
|
-
* Remove deprecated "new Buffer()" calls [Alexis Svinartchouk]
|
|
32
|
-
* Remove generated lib.js file [Alexis Svinartchouk]
|
|
33
|
-
* Add project urls to package.json [Alexis Svinartchouk]
|
|
34
|
-
* Update dependencies, update coffescript to 2.5.1 [Alexis Svinartchouk]
|
|
35
|
-
|
|
36
|
-
## 0.0.8 - 2019-10-03
|
|
37
|
-
|
|
38
|
-
* Add title in readme [Giovanni Garufi]
|
|
39
|
-
|
|
40
|
-
## 0.0.7 - 2019-10-03
|
|
41
|
-
|
|
42
|
-
* Remove empty test script from package.json [Alexis Svinartchouk]
|
|
43
|
-
* DEFLATE_END_LENGTH constant [Alexis Svinartchouk]
|
|
44
|
-
* Fix DEFLATE_END stripping [Alexis Svinartchouk]
|