package.json
1 { 2 "author": "Brian J. Brennan <brianloveswords@gmail.com>", 3 "name": "buffer-crc32", 4 "description": "A pure javascript CRC32 algorithm that plays nice with binary data", 5 "version": "0.2.13", 6 "licenses": [ 7 { 8 "type": "MIT", 9 "url": "https://github.com/brianloveswords/buffer-crc32/raw/master/LICENSE" 10 } 11 ], 12 "contributors": [ 13 { 14 "name": "Vladimir Kuznetsov", 15 "github": "mistakster" 16 } 17 ], 18 "homepage": "https://github.com/brianloveswords/buffer-crc32", 19 "repository": { 20 "type": "git", 21 "url": "git://github.com/brianloveswords/buffer-crc32.git" 22 }, 23 "main": "index.js", 24 "scripts": { 25 "test": "./node_modules/.bin/tap tests/*.test.js" 26 }, 27 "dependencies": {}, 28 "devDependencies": { 29 "tap": "~0.2.5" 30 }, 31 "optionalDependencies": {}, 32 "engines": { 33 "node": "*" 34 }, 35 "license": "MIT", 36 "files": [ 37 "index.js" 38 ] 39 }