-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.52 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "third-auth",
"version": "1.2.6",
"description": "NPM server-side third party authentication library for sign in with apple, sign in with google, sign in with X (twitter) and sign in with LinkedIn in typescript",
"main": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"build": "tsc",
"test:unit": "jest --config ./test/jest-unit.json --detectOpenHandles --forceExit"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"keywords": [
"third-auth",
"auth",
"openid",
"authentication",
"sign-in-with-apple",
"sign-in-with-google",
"sign-in-with-twitter",
"sign-in-with-x",
"sign-in-with-linkedin",
"server-side-authentication"
],
"author": "",
"license": "ISC",
"dependencies": {
"@types/qs": "^6.9.15",
"google-auth-library": "^9.13.0",
"jose": "^4.15.9",
"qs": "^6.13.0",
"axios": "^1.2.0"
},
"peerDependencies": {
"axios": "^1.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
},
"repository": {
"type": "git",
"url": "https://github.com/behrad-kzm/third-auth"
}
}