dremjs-old/apps/Paint/node_modules/express/node_modules/crc/package.json

29 lines
1.4 KiB
JSON

{
"name": "crc",
"version": "0.2.0",
"description": "CRC JavaScript implementation",
"author": {
"name": "Alex Gorbatchev",
"email": "alex.gorbatchev@gmail.com"
},
"contributors": [],
"main": "./lib/crc.js",
"scripts": {},
"directories": {},
"devDependencies": {
"mocha": "*",
"should": "*"
},
"repository": {
"type": "git",
"url": "git://github.com/alexgorbatchev/node-crc.git"
},
"readme": "# JavaScript CRC 8, 16 and 32.\n\nThis is a basic port/copy of the JavaScript CRC implementation. The module works with any CommonJS system supporting `module.exports` notation as well as in the browser. When loaded in the browser, all functions end up under the `window.crc` \"namespace\".\n\nOriginal code is taken from http://www.digsys.se/JavaScript/CRC.aspx \n\n## Functions\n\nThe following functions are implemented:\n\n crc8(String)\t#=> Number\n crcArc(String)\t#=> Number\n crc16(String)\t#=> Number\n fcs16(String)\t#=> Number\n crc32(String)\t#=> Number\n hex8(Number)\t#=> String\n hex16(Number)\t#=> String\n hex32(Number)\t#=> String\n\n## Installation\n\n\tgit clone git://github.com/alexgorbatchev/node-crc.git\n\nor\n\n npm install crc\n\n## Running tests\n\n $ npm install\n $ make test",
"readmeFilename": "README.md",
"_id": "crc@0.2.0",
"dist": {
"shasum": "13c4a2a21999eb9713e1991d11f49e0bc87b1f03"
},
"_from": "crc@0.2.0"
}