package.json
1 { 2 "name": "crc32-stream", 3 "version": "4.0.2", 4 "description": "a streaming CRC32 checksumer", 5 "homepage": "https://github.com/archiverjs/node-crc32-stream", 6 "author": { 7 "name": "Chris Talkington", 8 "url": "http://christalkington.com/" 9 }, 10 "repository": { 11 "type": "git", 12 "url": "https://github.com/archiverjs/node-crc32-stream.git" 13 }, 14 "bugs": { 15 "url": "https://github.com/archiverjs/node-crc32-stream/issues" 16 }, 17 "license": "MIT", 18 "main": "lib/index.js", 19 "files": [ 20 "lib" 21 ], 22 "engines": { 23 "node": ">= 10" 24 }, 25 "scripts": { 26 "test": "mocha --reporter dot" 27 }, 28 "dependencies": { 29 "crc-32": "^1.2.0", 30 "readable-stream": "^3.4.0" 31 }, 32 "devDependencies": { 33 "chai": "^4.0.0", 34 "mocha": "^8.0.1" 35 }, 36 "keywords": [ 37 "crc32-stream", 38 "crc32", 39 "stream", 40 "checksum" 41 ], 42 "publishConfig": { 43 "registry": "https://registry.npmjs.org/" 44 } 45 }