action-zip/package.json

39 lines
930 B
JSON
Raw Normal View History

2020-03-21 04:41:59 -07:00
{
"name": "action-zip",
"version": "0.1.0",
"description": "Action for zipping files easily",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"build": "ncc build index.js -o dist",
"add": "git add dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/papeloto/action-version-files.git"
},
"author": "Victor Navarro <papeloto>",
"license": "MIT",
"bugs": {
"url": "https://github.com/actions/action-version-files/issues"
},
"homepage": "https://github.com/actions/action-version-files#readme",
"dependencies": {
2023-05-02 10:20:54 -07:00
"@actions/core": "^1.10.0",
2020-03-21 04:41:59 -07:00
"@actions/github": "^2.1.1",
"adm-zip": "^0.4.14",
"zip-local": "^0.3.4"
},
"devDependencies": {
"@zeit/ncc": "^0.21.1",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"npm-run-all": "^4.1.5"
},
"husky": {
"hooks": {
"pre-commit": "run-s lint build add"
}
}
}