action-slack/package.json

56 строки
1.4 KiB
JSON
Исходник Постоянная ссылка Обычный вид История

2019-08-15 18:14:40 +03:00
{
2019-08-15 18:19:52 +03:00
"name": "action-slack",
2020-10-03 11:11:50 +03:00
"version": "3.8.0",
2019-08-15 18:19:52 +03:00
"description": "You can notify slack of GitHub Actions.",
2019-08-15 18:14:40 +03:00
"main": "lib/main.js",
"scripts": {
"build": "tsc",
2019-12-27 10:35:42 +03:00
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
2020-08-10 15:42:11 +03:00
"pack": "ncc build -m",
2019-12-27 19:36:39 +03:00
"test": "jest && codecov",
2019-12-31 09:11:54 +03:00
"test-for-local": "jest",
2020-06-28 10:22:12 +03:00
"all": "npm run build && npm run format-check && npm run lint && npm run pack && npm test",
2020-08-07 17:51:30 +03:00
"release": "npm run build && npm run pack",
"prepare-release": "./scripts/prepare-release.sh"
2019-08-15 18:14:40 +03:00
},
"repository": {
"type": "git",
2019-08-15 18:19:52 +03:00
"url": "git+https://github.com/8398a7/action-slack.git"
2019-08-15 18:14:40 +03:00
},
"keywords": [
"actions",
"node",
2019-08-15 18:19:52 +03:00
"setup",
"chat",
"slack"
2019-08-15 18:14:40 +03:00
],
2019-08-15 18:19:52 +03:00
"author": "8398a7",
2019-08-15 18:14:40 +03:00
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
2020-06-28 10:35:27 +03:00
"@actions/github": "^4.0.0",
2020-03-22 12:42:39 +03:00
"@slack/webhook": "^5.0.3",
2020-06-28 10:35:27 +03:00
"semver": "^7.3.2"
2019-08-15 18:14:40 +03:00
},
"devDependencies": {
2020-08-08 07:41:16 +03:00
"@types/jest": "^26.0.9",
"@types/node": "^14.0.27",
2020-06-28 10:35:27 +03:00
"@types/semver": "^7.3.1",
2020-08-08 07:41:16 +03:00
"@typescript-eslint/parser": "^3.8.0",
2020-06-28 10:35:27 +03:00
"@zeit/ncc": "^0.22.3",
2020-08-08 07:41:16 +03:00
"codecov": "^3.7.2",
"eslint": "^7.6.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^23.20.0",
"jest": "^26.2.2",
"jest-circus": "^26.2.2",
2020-06-28 10:35:27 +03:00
"js-yaml": "^3.14.0",
2020-08-08 07:41:16 +03:00
"nock": "^13.0.3",
2020-06-28 10:35:27 +03:00
"prettier": "^2.0.5",
2020-08-08 07:41:16 +03:00
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
2019-08-15 18:14:40 +03:00
}
}