package.json 826 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
{
  "name": "node-stream-zip",
  "version": "1.9.2",
  "description": "node.js library for reading and extraction of ZIP archives",
  "keywords": [
    "zip",
    "archive",
    "unzip",
    "stream"
  ],
  "homepage": "https://github.com/antelle/node-stream-zip",
  "author": "Antelle <antelle.net@gmail.com> (https://github.com/antelle)",
  "bugs": {
    "email": "antelle.net@gmail.com",
    "url": "https://github.com/antelle/node-stream-zip/issues"
  },
  "license": "MIT",
  "files": [
    "LICENSE",
    "node_stream_zip.js"
  ],
  "scripts": {
    "test": "nodeunit test/tests.js"
  },
  "main": "node_stream_zip.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/antelle/node-stream-zip.git"
  },
  "engines": {
    "node": ">=0.10.0"
  },
  "devDependencies": {
    "nodeunit": "^0.11.3"
  }
}