forked from bormando/gmail-getter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.35 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
{
"name": "@gregjlee/gmail-getter",
"version": "2.0.3",
"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"
},
"repository": {
"type": "git",
"url": "git://github.com/gregjlee/gmail-getter.git"
},
"keywords": [
"gmail",
"test",
"api"
],
"author": "Greg Lee",
"license": "MIT",
"devDependencies": {
"@types/jest": "29.4.0",
"@types/jest-json-schema": "6.1.1",
"@typescript-eslint/parser": "6.14.0",
"dotenv": "16.0.3",
"eslint": "8.55.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.0.1",
"jest": "29.4.3",
"jest-json-schema": "6.1.0",
"prettier": "3.1.1",
"ts-jest": "29.0.5",
"ts-json-schema-generator": "1.5.0",
"ts-node": "10.9.1",
"typescript": "4.9.5"
},
"dependencies": {
"@google-cloud/local-auth": "2.1.1",
"axios": "1.3.2"
}
}