2014-06-16 21:27:47 +00:00
|
|
|
{
|
|
|
|
"name": "crc-32",
|
2018-01-17 21:27:59 +00:00
|
|
|
"version": "1.2.0",
|
2014-06-16 21:27:47 +00:00
|
|
|
"author": "sheetjs",
|
|
|
|
"description": "Pure-JS CRC-32",
|
2018-01-17 21:27:59 +00:00
|
|
|
"keywords": [ "crc", "crc32", "checksum" ],
|
2016-06-16 20:49:46 +00:00
|
|
|
"bin": {
|
|
|
|
"crc32": "./bin/crc32.njs"
|
|
|
|
},
|
2014-06-16 21:27:47 +00:00
|
|
|
"main": "./crc32",
|
2017-09-14 05:28:47 +00:00
|
|
|
"types": "types",
|
2016-06-16 20:49:46 +00:00
|
|
|
"dependencies": {
|
2018-04-21 14:09:47 +00:00
|
|
|
"printj": "~1.1.0",
|
|
|
|
"exit-on-epipe": "~1.0.1"
|
2016-06-16 20:49:46 +00:00
|
|
|
},
|
2014-06-16 21:27:47 +00:00
|
|
|
"devDependencies": {
|
2018-04-21 14:09:47 +00:00
|
|
|
"mocha": "~2.5.3",
|
2017-09-14 05:28:47 +00:00
|
|
|
"blanket": "~1.2.3",
|
2018-04-21 14:09:47 +00:00
|
|
|
"codepage": "~1.10.0",
|
|
|
|
"@sheetjs/uglify-js": "~2.7.3",
|
|
|
|
"@types/node": "^8.0.7",
|
2017-09-14 05:28:47 +00:00
|
|
|
"dtslint": "^0.1.2",
|
|
|
|
"typescript": "2.2.0"
|
2014-06-16 21:27:47 +00:00
|
|
|
},
|
2018-04-21 14:09:47 +00:00
|
|
|
"repository": { "type": "git", "url": "git://github.com/SheetJS/js-crc32.git" },
|
2014-06-16 21:27:47 +00:00
|
|
|
"scripts": {
|
2017-09-14 05:28:47 +00:00
|
|
|
"test": "make test",
|
2018-01-17 21:27:59 +00:00
|
|
|
"build": "make",
|
|
|
|
"lint": "make fullint",
|
2017-09-14 05:28:47 +00:00
|
|
|
"dtslint": "dtslint types"
|
2014-06-16 21:27:47 +00:00
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"blanket": {
|
|
|
|
"pattern": "crc32.js"
|
|
|
|
}
|
|
|
|
},
|
2017-09-14 05:28:47 +00:00
|
|
|
"homepage": "http://sheetjs.com/opensource",
|
2018-01-17 21:27:59 +00:00
|
|
|
"files": ["crc32.js", "bin/crc32.njs", "LICENSE", "README.md", "types/index.d.ts", "types/*.json"],
|
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" }
|
|
|
|
}
|