-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.43 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
{
"name": "gmail-getter",
"version": "2.2.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 && eslint src/**/*.ts tests/**/*.ts jest.config.ts --fix",
"lint": "prettier . --check && eslint src/**/*.ts tests/**/*.ts jest.config.ts",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git://github.com/bormando/gmail-getter.git"
},
"keywords": [
"gmail",
"test",
"api"
],
"author": "Dmitrii Bormotov",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/jest-json-schema": "^6.1.4",
"@typescript-eslint/parser": "^7.17.0",
"dotenv": "^16.4.5",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"google-auth-library": "^9.12.0",
"jest": "^29.7.0",
"jest-json-schema": "^6.1.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.3",
"ts-json-schema-generator": "^2.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@google-cloud/local-auth": "^3.0.1",
"axios": "^1.7.2"
}
}