-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
52 lines (52 loc) · 1.34 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "rocketchat-github-action-notification",
"version": "1.0.0",
"description": "Rocket.Chat Notification for GitHub Actions",
"main": "lib/main.js",
"scripts": {
"build": "ncc build src/index.ts",
"format": "prettier --write **/*.ts",
"pre-commit": "npm run format && npm run build",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "npm run format && npm run build"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/RocketChat/Rocket.Chat.GitHub.Action.Notification.git"
},
"keywords": [
"actions",
"container",
"toolkit",
"setup"
],
"author": "Rocket.Chat",
"license": "MIT",
"bugs": {
"url": "https://github.com/RocketChat/Rocket.Chat.GitHub.Action.Notification/issues"
},
"homepage": "https://github.com/RocketChat/Rocket.Chat.GitHub.Action.Notification#readme",
"dependencies": {
"@actions/core": "^1.2.0",
"@actions/exec": "^1.0.1",
"@actions/github": "^1.1.0",
"@actions/io": "^1.0.1",
"@actions/tool-cache": "^1.1.2",
"axios": "^0.19.0"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "^12.12.12",
"@zeit/ncc": "^0.20.5",
"husky": "^3.1.0",
"jest": "^24.9.0",
"jest-circus": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.2.0",
"typescript": "^3.7.2"
}
}