-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.75 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.75 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "worklogger",
"version": "3.1.0",
"description": "Reads worklogs from a variety of sources and consolidates them to several outputs.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/AlphaGit/worklogger.git"
},
"type": "module",
"scripts": {
"lint": "eslint '**/*.ts'",
"lint:fix": "eslint --fix .",
"start": "tsx index.ts",
"test": "TZ=America/Vancouver jest",
"test:typecheck": "tsc --noEmit",
"test:coverage": "TZ=America/Vancouver jest --coverage",
"test:all": "yarn lint && yarn test:typecheck && yarn test:coverage",
"postversion": "docker build -t alphadock/worklogger:latest -t alphadock/worklogger:v$npm_package_version . && docker push alphadock/worklogger:v$npm_package_version && docker push alphadock/worklogger:latest"
},
"keywords": [
"work",
"logger",
"worklog",
"harvest",
"jira",
"tempo"
],
"author": "Alpha <alphagma@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlphaGit/worklogger/issues"
},
"homepage": "https://github.com/AlphaGit/worklogger#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.946.0",
"@aws-sdk/client-sesv2": "^3.946.0",
"app-module-path": "^2.2.0",
"aws-lambda": "^1.0.7",
"aws-sdk": "^2.1692.0",
"cacache": "^20.0.3",
"fetch-event": "^1.0.0-alpha",
"googleapis": "^167.0.0",
"log4js": "^6.9.1",
"minimist": "^1.2.8",
"moment-timezone": "^0.6.0",
"mustache": "^4.2.0",
"node-fetch": "^3.3.2",
"showdown": "^2.1.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@jest/globals": "^30.2.0",
"@types/aws-lambda": "^8.10.159",
"@types/jest": "^30.0.0",
"@types/log4js": "^2.3.5",
"@types/minimist": "^1.2.5",
"@types/mustache": "^4.2.6",
"@types/node": "^24.10.1",
"@types/node-fetch": "^2.6.13",
"eslint": "^9.39.1",
"inquirer": "^13.0.2",
"jest": "^30.2.0",
"jest-fetch-mock": "^3.0.3",
"nyc": "^17.1.0",
"serverless": "^4.27.0",
"serverless-event-constant-inputs": "0.0.1",
"serverless-offline": "^14.4.0",
"serverless-webpack": "^5.15.3",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1",
"webpack": "^5.103.0",
"webpack-node-externals": "^3.0.0"
},
"jest": {
"automock": false,
"clearMocks": true,
"coverageDirectory": "coverage",
"preset": "ts-jest",
"injectGlobals": false,
"setupFiles": [
"<rootDir>/tests/jestSetup.ts"
],
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
}
},
"packageManager": "yarn@3.1.0"
}