Ghost/ghost/zip/package.json
Hannah Wolfe 62c2fce6cc Switch to OG extract-zip w/ promise based interface
- switch back from @tryghost/extract-zip to extract-zip now that it has been fixed (and is much better maintained)
- switch the internal interface to be fully promise-based and test promise-based too
2020-04-08 12:48:20 +01:00

33 lines
716 B
JSON

{
"name": "@tryghost/zip",
"version": "0.1.0",
"repository": "https://github.com/TryGhost/Ghost-Utils/tree/master/packages/zip",
"author": "Ghost Foundation",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test": "NODE_ENV=testing mocha './test/**/*.test.js'",
"lint": "eslint . --ext .js --cache",
"posttest": "yarn lint"
},
"files": [
"index.js",
"lib"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"mocha": "7.1.1",
"should": "13.2.3",
"sinon": "9.0.1"
},
"dependencies": {
"archiver": "^3.1.1",
"bluebird": "^3.7.2",
"extract-zip": "^2.0.0",
"fs-extra": "^9.0.0"
}
}