2014-06-16 21:27:47 +00:00
|
|
|
{
|
|
|
|
"name": "crc-32",
|
2016-10-08 18:48:03 +00:00
|
|
|
"version": "1.0.0",
|
2014-06-16 21:27:47 +00:00
|
|
|
"author": "sheetjs",
|
|
|
|
"description": "Pure-JS CRC-32",
|
|
|
|
"keywords": [ "crc32", "checksum", "crc" ],
|
2016-06-16 20:49:46 +00:00
|
|
|
"bin": {
|
|
|
|
"crc32": "./bin/crc32.njs"
|
|
|
|
},
|
2014-06-16 21:27:47 +00:00
|
|
|
"main": "./crc32",
|
2016-06-16 20:49:46 +00:00
|
|
|
"dependencies": {
|
|
|
|
"concat-stream":"",
|
2016-10-08 18:48:03 +00:00
|
|
|
"printj":"",
|
2016-06-16 20:49:46 +00:00
|
|
|
"exit-on-epipe":""
|
|
|
|
},
|
2014-06-16 21:27:47 +00:00
|
|
|
"devDependencies": {
|
|
|
|
"mocha":"",
|
2016-06-16 20:49:46 +00:00
|
|
|
"codepage":""
|
2014-06-16 21:27:47 +00:00
|
|
|
},
|
|
|
|
"repository": { "type":"git", "url":"git://github.com/SheetJS/js-crc32.git" },
|
|
|
|
"scripts": {
|
|
|
|
"pretest": "git submodule init && git submodule update",
|
|
|
|
"test": "make test"
|
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"blanket": {
|
|
|
|
"pattern": "crc32.js"
|
|
|
|
}
|
|
|
|
},
|
2016-06-16 20:49:46 +00:00
|
|
|
"files": ["crc32.js", "bin/crc32.njs", "LICENSE", "README.md"],
|
2014-06-16 21:27:47 +00:00
|
|
|
"bugs": { "url": "https://github.com/SheetJS/js-crc32/issues" },
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"engines": { "node": ">=0.8" }
|
|
|
|
}
|