forked from AlexSim93/pull-request-analytics-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.19 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
{
"name": "pull-request-analytics-action",
"version": "2.2.7",
"description": "Generates detailed PR analytics reports within GitHub, focusing on review efficiency and team performance.",
"main": "build/index.js",
"scripts": {
"start": "node ./build/index.js",
"build": "tsc && ncc build ./dist/index.js -o build",
"tsc": "tsc",
"lint": "eslint ./src",
"test": "TZ=utc jest",
"test:watch": "TZ=utc jest --watch",
"prepare": "husky install"
},
"author": "Aleksei Simatov",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@octokit/plugin-throttling": "^8.1.3",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"mixpanel": "^0.18.0",
"octokit": "^3.1.2"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
},
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/jest": "^29.5.10",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.54.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}