Comparing version 0.4.0 to 1.0.0
@@ -15,2 +15,10 @@ Changelog | ||
### v1.0.0 -- 2024-03-18 | ||
Breaking changes: | ||
* None. | ||
Other notable changes: | ||
* Updated documentation. | ||
### v0.4.0 -- 2024-03-18 | ||
@@ -28,1 +36,9 @@ | ||
* Published and then left to go to seed. | ||
### History | ||
This module was originally written by Dan Bornstein in 2012 and published to | ||
`npm`. In 2024, Dan discovered that the original repo had been deleted, so he | ||
took the module as published and turned it back into a repo in his account. His | ||
assumption is that, having been deleted by the corporate entity that originally | ||
funded it, the copyright effectively reverted to him. |
{ | ||
"name": "leb", | ||
"version": "0.4.0", | ||
"keywords": | ||
["leb", "leb128", "uleb128", "int", "uint", | ||
"encoding", "decoding", "encode", "decode"], | ||
"description": | ||
"LEB128 utilities for Node", | ||
"homepage": "https://github.com/danfuzz/leb", | ||
"repository": { | ||
"url": "git+https://github.com/danfuzz/leb" | ||
}, | ||
"license": "Apache-2.0", | ||
"author": { | ||
"name": "Dan Bornstein", | ||
"email": "hello-dan@murtbo.com", | ||
"url": "http://www.milk.com/" | ||
}, | ||
"version": "1.0.0", | ||
"description": "LEB128 utilities for Node", | ||
"keywords": [ | ||
"leb", "leb128", "uleb128", "int", "uint", "encoding", "decoding", "encode", | ||
"decode" | ||
], | ||
"homepage": "https://github.com/danfuzz/leb", | ||
"repository": { | ||
"url": "git+https://github.com/danfuzz/leb" | ||
}, | ||
"license": "Apache-2.0", | ||
"author": { | ||
"name": "Dan Bornstein", | ||
"email": "hello-dan@murtbo.com", | ||
"url": "http://www.milk.com/" | ||
}, | ||
"main": "lib/leb.js", | ||
"engine": { | ||
"node": ">=0.6.0" | ||
}, | ||
"main": "lib/leb.js", | ||
"engine": { | ||
"node": ">=0.6.0" | ||
}, | ||
"scripts": { | ||
"test": "node test/test.js" | ||
} | ||
"scripts": { | ||
"test": "node test/test.js" | ||
} | ||
} |
@@ -7,3 +7,3 @@ leb: LEB128 utilities for Node | ||
LEB128, which is short for "Little-Endian Base 128") is somewhat like | ||
LEB128, which is short for "Little-Endian Base 128", is somewhat like | ||
UTF-8 in representing numbers using a variable number of bytes. Unlike | ||
@@ -17,3 +17,3 @@ UTF-8, LEB128 uses just the high bit of each byte to determine the | ||
is also used in Android's | ||
[DEX file format](http://http://source.android.com/tech/dalvik/dex-format.html). | ||
[DEX file format](https://source.android.com/docs/core/runtime/dex-format). | ||
@@ -32,4 +32,3 @@ This module provides encoders and decoders for both signed and | ||
Format Details | ||
-------------- | ||
## Format Details | ||
@@ -105,4 +104,3 @@ The LEB128 format is really quite simple. | ||
Building and Installing | ||
----------------------- | ||
## Building and Installing | ||
@@ -118,4 +116,3 @@ ```shell | ||
Testing | ||
------- | ||
## Testing | ||
@@ -133,4 +130,3 @@ ```shell | ||
API Details | ||
----------- | ||
## API Details | ||
@@ -220,11 +216,4 @@ | ||
To Do | ||
----- | ||
## Contributing | ||
* Figure out something to do. | ||
Contributing | ||
------------ | ||
Questions, comments, bug reports, and pull requests are all welcome. | ||
@@ -236,12 +225,2 @@ | ||
History | ||
------- | ||
This module was originally written by Dan Bornstein in 2012 and publised to | ||
`npm`. In 2024, Dan discovered that the original repo had been deleted, so he | ||
took the module as published and turned it back into a repo in his account. His | ||
assumption is that, having been deleted by the corporate entity that originally | ||
funded it, the copyright effectively reverted to him. | ||
- - - - - - - - - - | ||
@@ -248,0 +227,0 @@ ``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
0
50673
223