zip-build
Version:
Node package to zip your build directory and name it according to your package.json name and version.
54 lines (53 loc) • 1.32 kB
JSON
{
"name": "zip-build",
"version": "1.8.0",
"description": "Node package to zip your build directory and name it according to your package.json name and version.",
"homepage": "https://github.com/tribal2/zip-build#readme",
"author": "Ricardo Tribaldos (https://barustudio.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tribal2/zip-build"
},
"keywords": [
"zip",
"build",
"npm",
"zip-build",
"zip-dist",
"zip-folder"
],
"bugs": {
"url": "https://github.com/tribal2/zip-build/issues"
},
"main": "lib/index.js",
"bin": "./lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest",
"start:dev": "npx ts-node -T src/index.ts",
"build": "npm test && tsc",
"publish": "npm run build && npm publish"
},
"dependencies": {
"inquirer": "^8.2.5",
"yargs": "^16.2.0",
"zip-folder-promise": "^1.2.0"
},
"devDependencies": {
"@types/inquirer": "^8.2.5",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.3",
"@types/yargs": "^17.0.13",
"jest": "^27.5.1",
"jest-mock": "^27.5.1",
"prettier": "^2.7.1",
"ts-jest": "^27.1.5",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.3"
}
}