Files
add-and-commit/package.json
2019-12-20 22:48:26 +01:00

44 lines
1.2 KiB
JSON

{
"name": "add-and-commit",
"version": "2.3.0",
"description": "Add & commit files from a path directly from GitHub Actions",
"main": "lib/main.js",
"scripts": {
"build": "npm run compile && npm run minify && rm build/*.js",
"compile": "tsc",
"minify": "minify build -d lib",
"dist": "echo \"Preparing for distribution...\" && npm i --only=prod && git add -f node_modules && git commit -m \"Commit dist files\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EndBug/add-and-commit.git"
},
"keywords": [
"github",
"action",
"version",
"npm",
"node"
],
"author": "Federico Grandi <fgrandi30@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/EndBug/add-and-commit/issues"
},
"homepage": "https://github.com/EndBug/add-and-commit#readme",
"dependencies": {
"@actions/core": "^1.1.3",
"shelljs": "^0.8.3"
},
"devDependencies": {
"@types/node": "^12.7.12",
"@types/shelljs": "^0.8.6",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"babel-minify": "^0.5.1",
"eslint": "^6.8.0",
"typescript": "^3.6.4"
}
}