js-crc32/package.json

34 lines
752 B
JSON
Raw Normal View History

2014-06-16 21:27:47 +00:00
{
"name": "crc-32",
2017-04-27 21:29:43 +00:00
"version": "1.0.2",
2014-06-16 21:27:47 +00:00
"author": "sheetjs",
"description": "Pure-JS CRC-32",
"keywords": [ "crc32", "checksum", "crc" ],
"bin": {
"crc32": "./bin/crc32.njs"
},
2014-06-16 21:27:47 +00:00
"main": "./crc32",
"dependencies": {
"printj":"",
"exit-on-epipe":""
},
2014-06-16 21:27:47 +00:00
"devDependencies": {
"mocha":"",
"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"
}
},
"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" }
}