-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.53 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
53
{
"name": "notifier",
"version": "0.2.1",
"description": "",
"main": "index.ts",
"scripts": {
"preversion": "npm run all",
"lint": "eslint . --resolve-plugins-relative-to . --fix",
"prepare": "npx ncc build src/index.ts -o dist --source-map --license licenses.txt",
"test": "echo \"Error: no test specified\" && exit 1",
"all": "npm run lint && npm run prepare",
"watch": "onchange './**/*.js' -e 'dist/**/*.js' -- npm run prepare"
},
"type": "module",
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@slack/bolt": "^3.18.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"onchange": "^7.1.0"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/eslint-parser": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@jest/globals": "^29.7.0",
"@octokit/types": "^13.6.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-github": "^4.10.2",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-jsonc": "^2.15.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"make-coverage-badge": "^1.2.0",
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"engines": {
"node": "20.x"
}
}