forked from ravsamhq/notify-slack-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.07 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
{
"name": "notify-slack-action",
"version": "2.0.0",
"main": "lib/main.js",
"repository": "[email protected]:ravsamhq/notify-slack-action.git",
"author": "RavSam Web Solutions",
"license": "MIT",
"scripts": {
"build": "rimraf lib && tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "rimraf dist && ncc build --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.3",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/jest": "28.1.8",
"@types/node": "^18.0.0",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/parser": "5.53.0",
"@vercel/ncc": "^0.36.0",
"eslint": "8.34.0",
"eslint-plugin-github": "4.6.1",
"eslint-plugin-jest": "26.9.0",
"jest": "28.1.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "28.0.8",
"typescript": "4.9.5"
}
}