-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.08 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.08 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
49
50
{
"name": "mergestats",
"version": "1.0.0",
"description": "Tool to analyze GitHub PR statistics",
"main": "dist/index.js",
"scripts": {
"start": "tsc && node dist/index.js",
"dev": "ts-node index.ts",
"build": "tsc",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"<rootDir>/tests/**/*.test.ts"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/mergestats-ui/"
],
"clearMocks": true
},
"keywords": [
"github",
"pull-requests",
"statistics"
],
"author": "",
"license": "ISC",
"dependencies": {
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.3.5",
"@types/node-fetch": "^2.6.13",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"node-fetch": "^2.6.12",
"typescript": "^5.9.3"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2"
}
}