-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.27 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.27 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
{
"name": "gmail-getter",
"version": "2.4.0",
"description": "A simple tool that gets emails from the Gmail API",
"main": "dist/index.js",
"files": [
"dist"
],
"bin": {
"get-refresh-token": "dist/get-token-script.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"generate-schema": "ts-json-schema-generator --path 'src/**/types/*.ts' -o 'tests/schema.json'",
"test": "jest",
"format": "prettier . --write --list-different",
"lint": "prettier . --check",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git://github.com/bormando/gmail-getter.git"
},
"keywords": [
"gmail",
"test",
"api",
"qa"
],
"author": "Dmitrii Bormotov",
"license": "MIT",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/jest-json-schema": "^6.1.5",
"@types/node": "^25.5.0",
"dotenv": "^16.5.0",
"google-auth-library": "^9.15.1",
"jest": "^30.3.0",
"jest-json-schema": "^6.1.0",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"ts-jest": "^29.4.6",
"ts-json-schema-generator": "^2.9.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@google-cloud/local-auth": "^3.0.1",
"axios": "^1.13.6"
}
}