-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.51 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "kablog",
"version": "1.0.0",
"main": "src/index.js",
"scripts": {
"build": "ncc build -m src/index.ts",
"start": "node dist/index.js",
"test": "jest"
},
"author": "puleugo",
"license": "ISC",
"description": "",
"dependencies": {
"@actions/core": "^1.11.1",
"@google-cloud/local-auth": "^2.1.0",
"axios": "^1.7.7",
"cheerio": "^1.0.0",
"crypto": "^1.0.1",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"fast-xml-parser": "^4.5.0",
"googleapis": "^126.0.1",
"html-to-md": "^0.8.6",
"jest": "^29.7.0",
"openai": "^4.60.0",
"ts-jest": "^29.2.5",
"xml-js": "^1.6.11",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@faker-js/faker": "^9.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.4",
"@types/uuid": "^10.0.0",
"@types/xml2js": "^0.4.14",
"@vercel/ncc": "^0.38.2",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.3",
"typescript-eslint": "^8.14.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".*\\.*spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"modulePaths": [
"src"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"moduleNameMapper": {
"^src/(.*)$": "<rootDir>/src/$1"
}
}
}