-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.47 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": "google-oauth-jwt-modern",
"version": "1.0.6",
"description": "Google OAuth 2.0 authentication for server-to-server. Obtain token.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/randomhash/google-oauth-jwt-modern.git"
},
"author": "Andrii Klubuk <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rm -rf lib/ && yarn build:types && babel src --out-dir lib --ignore '**/*.test.ts' --extensions '.ts'",
"build:types": "tsc -p tsconfig.types.json",
"lint": "eslint . --fix --ext .js,.json,.ts --quiet",
"test": "TZ=UTC jest src"
},
"prettier": "@shelf/prettier-config",
"babel": {
"extends": "@shelf/babel-config/backend"
},
"files": [
"lib"
],
"devDependencies": {
"@babel/cli": "7.14.8",
"@babel/core": "7.14.8",
"@babel/node": "7.14.7",
"@shelf/babel-config": "0.1.4",
"@shelf/eslint-config": "1.7.0",
"@shelf/prettier-config": "1.0.0",
"@shelf/tsconfig": "0.0.6",
"@types/jest": "26.0.24",
"@types/node": "14",
"@types/node-fetch": "2.5.12",
"eslint": "7.31.0",
"jest": "27.0.6",
"prettier": "2.3.2",
"typescript": "4.3.5"
},
"bugs": {
"url": "https://github.com/randomhash/google-oauth-jwt-modern/issues"
},
"homepage": "https://github.com/randomhash/google-oauth-jwt-modern#readme",
"dependencies": {
"node-fetch": "2.6.1"
},
"engines": {
"node": ">=14"
}
}