39 lines
965 B
JSON
39 lines
965 B
JSON
|
{
|
||
|
"name": "crc",
|
||
|
"version": "3.4.4",
|
||
|
"description": "Module for calculating Cyclic Redundancy Check (CRC) for Node.js and the Browser.",
|
||
|
"keywords": [
|
||
|
"crc"
|
||
|
],
|
||
|
"files": [
|
||
|
"lib"
|
||
|
],
|
||
|
"main": "./lib/index.js",
|
||
|
"scripts": {
|
||
|
"test": "mocha test/*.test.js",
|
||
|
"pretest": "cd src && babel --out-dir ../lib *.js"
|
||
|
},
|
||
|
"author": {
|
||
|
"name": "Alex Gorbatchev",
|
||
|
"url": "https://github.com/alexgorbatchev"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"babel-cli": "^6.3.15",
|
||
|
"babel-core": "^6.1.21",
|
||
|
"babel-preset-es2015": "^6.1.18",
|
||
|
"beautify-benchmark": "^0.2.4",
|
||
|
"benchmark": "^1.0.0",
|
||
|
"buffer-crc32": "^0.2.3",
|
||
|
"chai": "^3.4.1",
|
||
|
"mocha": "*",
|
||
|
"seedrandom": "^2.3.6"
|
||
|
},
|
||
|
"homepage": "https://github.com/alexgorbatchev/node-crc",
|
||
|
"bugs": "https://github.com/alexgorbatchev/node-crc/issues",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git://github.com/alexgorbatchev/node-crc.git"
|
||
|
},
|
||
|
"license": "MIT"
|
||
|
}
|