wallet-core/node_modules/zip-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

53 lines
1.2 KiB
JSON

{
"name": "zip-stream",
"version": "1.1.1",
"description": "a streaming zip archive generator.",
"homepage": "https://github.com/archiverjs/node-zip-stream",
"author": {
"name": "Chris Talkington",
"url": "http://christalkington.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/archiverjs/node-zip-stream.git"
},
"bugs": {
"url": "https://github.com/archiverjs/node-zip-stream/issues"
},
"license": "MIT",
"main": "index.js",
"files": [
"index.js"
],
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "mocha --reporter dot",
"jsdoc": "jsdoc -c jsdoc.json README.md"
},
"dependencies": {
"archiver-utils": "^1.3.0",
"compress-commons": "^1.1.0",
"lodash": "^4.8.0",
"readable-stream": "^2.0.0"
},
"devDependencies": {
"archiver-jsdoc-theme": "^1.0.0",
"jsdoc": "~3.4.0",
"chai": "^3.4.0",
"minami": "^1.1.0",
"mocha": "^3.2.0",
"rimraf": "^2.4.3",
"mkdirp": "^0.5.0"
},
"keywords": [
"archive",
"stream",
"zip-stream",
"zip"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}