CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
package.json61 linesDownload Raw Back to archiver
1{2  "name": "archiver",3  "version": "7.0.1",4  "description": "a streaming interface for archive generation",5  "homepage": "https://github.com/archiverjs/node-archiver",6  "author": {7    "name": "Chris Talkington",8    "url": "http://christalkington.com/"9  },10  "repository": {11    "type": "git",12    "url": "https://github.com/archiverjs/node-archiver.git"13  },14  "bugs": {15    "url": "https://github.com/archiverjs/node-archiver/issues"16  },17  "license": "MIT",18  "main": "index.js",19  "files": [20    "index.js",21    "lib"22  ],23  "engines": {24    "node": ">= 14"25  },26  "scripts": {27    "test": "mocha --reporter dot",28    "bench": "node benchmark/simple/pack-zip.js"29  },30  "dependencies": {31    "archiver-utils": "^5.0.2",32    "async": "^3.2.4",33    "buffer-crc32": "^1.0.0",34    "readable-stream": "^4.0.0",35    "readdir-glob": "^1.1.2",36    "tar-stream": "^3.0.0",37    "zip-stream": "^6.0.1"38  },39  "devDependencies": {40    "archiver-jsdoc-theme": "1.1.3",41    "chai": "4.4.1",42    "jsdoc": "4.0.2",43    "mkdirp": "3.0.1",44    "mocha": "10.3.0",45    "rimraf": "5.0.5",46    "stream-bench": "0.1.2",47    "tar": "6.2.0",48    "yauzl": "3.1.2"49  },50  "keywords": [51    "archive",52    "archiver",53    "stream",54    "zip",55    "tar"56  ],57  "publishConfig": {58    "registry": "https://registry.npmjs.org/"59  }60}61 
basant307/AI_Governance_Project · CoolFace