-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.39 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.39 KB
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
{
"name": "review-cheerleader",
"version": "1.0.0",
"description": "",
"main": "src/main.js",
"scripts": {
"build": "tsc",
"watch": "./node_modules/.bin/tsc-watch --onFirstSuccess \"npm version patch\"",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint src/**/*.ts --fix",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"exec": "tsc && node src/main.js",
"all": "npm run build && npm run format && npm run lint-fix && npm run package"
},
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@octokit/rest": "^18.3.0",
"@slack/web-api": "^6.0.0",
"adm-zip": "^0.5.9",
"axios": "^0.24.0",
"moment": "^2.27.0",
"node-pagerduty": "^1.3.6"
},
"devDependencies": {
"@types/adm-zip": "^0.4.34",
"@types/jest": "^26.0.22",
"@types/node": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"@vercel/ncc": "^0.33.1",
"eslint": "^7.17.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^25.3.0",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"js-yaml": "^4.1.0",
"prettier": "2.5.1",
"ts-jest": "^26.4.4",
"tsc-watch": "^4.5.0",
"typescript": "^4.2.4"
}
}