- AMD support (h/t @lmk123 for initially contributing to js-crc32) - added missing bitshift (h/t @florentbr for initially contributing to js-crc32) - flow annotaations - updated ci node versions
29 lines
674 B
JSON
29 lines
674 B
JSON
{
|
|
"name": "adler-32",
|
|
"version": "0.3.0",
|
|
"author": "sheetjs",
|
|
"description": "Pure-JS ADLER-32",
|
|
"keywords": [ "adler32", "checksum" ],
|
|
"main": "./adler32",
|
|
"devDependencies": {
|
|
"mocha":"",
|
|
"xlsjs":"",
|
|
"uglify-js":"",
|
|
"codepage":""
|
|
},
|
|
"repository": { "type":"git", "url":"git://github.com/SheetJS/js-adler32.git" },
|
|
"scripts": {
|
|
"pretest": "git submodule init && git submodule update",
|
|
"test": "make test"
|
|
},
|
|
"config": {
|
|
"blanket": {
|
|
"pattern": "adler32.js"
|
|
}
|
|
},
|
|
"files": ["adler32.js", "LICENSE", "README.md"],
|
|
"bugs": { "url": "https://github.com/SheetJS/js-adler32/issues" },
|
|
"license": "Apache-2.0",
|
|
"engines": { "node": ">=0.8" }
|
|
}
|