wallet-core/node_modules/crc32-stream/package.json
Florian Dold 82f2b76e25
Reorganize module loading.
We now use webpack instead of SystemJS, effectively bundling modules
into one file (plus commons chunks) for every entry point.  This results
in a much smaller extension size (almost half).  Furthermore we use
yarn/npm even for extension run-time dependencies.  This relieves us
from manually vendoring and building dependencies.  It's also easier to
understand for new developers familiar with node.
2017-04-24 16:14:29 +02:00

46 lines
972 B
JSON

{
"name": "crc32-stream",
"version": "2.0.0",
"description": "a streaming CRC32 checksumer",
"homepage": "https://github.com/archiverjs/node-crc32-stream",
"author": {
"name": "Chris Talkington",
"url": "http://christalkington.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/archiverjs/node-crc32-stream.git"
},
"bugs": {
"url": "https://github.com/archiverjs/node-crc32-stream/issues"
},
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib"
],
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "mocha --reporter dot"
},
"dependencies": {
"crc": "^3.4.4",
"readable-stream": "^2.0.0"
},
"devDependencies": {
"chai": "^3.4.0",
"mocha": "^3.2.0"
},
"keywords": [
"crc32-stream",
"crc32",
"stream",
"checksum"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}