generated from yukin01/typescript-action-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "slack-bot-action",
"version": "1.0.0",
"description": "An action to notify Slack using the chat.postMessage API",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint . --ext .ts",
"format": "prettier --write '**/*.(ts|js|json)'",
"format-check": "prettier --check '**/*.(ts|js|json)'",
"bundle": "ncc build",
"all": "yarn format-check && yarn lint && yarn build && yarn bundle && yarn test"
},
"repository": "ssh://[email protected]/yukin01/typescript-action-template",
"author": "yukin01 <[email protected]>",
"license": "MIT",
"private": true,
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"@slack/web-api": "^6.5.1"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"@zeit/ncc": "^0.22.3",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.0",
"jest": "^27.4.5",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
}
}