forked from metheos/node-oauth2-gm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.61 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
66
67
68
69
{
"name": "node-oauth2-gm",
"version": "1.0.0",
"description": "Unofficial Node.js Library for OnStar Requests",
"main": "auth/app.js",
"keywords": [
"OnStar",
"GM",
"authentication",
"OpenID",
"API",
"OAuth",
"vehicles"
],
"author": "Joel Vandal <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/joelvandal/node-oauth2-gm.git"
},
"bugs": {
"url": "https://github.com/joelvandal/node-oauth2-gm/issues"
},
"homepage": "https://github.com/joelvandal/node-oauth2-gm#readme",
"type": "module",
"scripts": {
"start": "node auth/app.js",
"dev": "nodemon --ignore 'sessions/*' --ignore 'tokens/*' --ignore 'cookies/*' auth/app.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write ."
},
"dependencies": {
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"fastify": "^5.1.0",
"http-cookie-agent": "^6.0.6",
"openid-client": "^5.7.0",
"qs": "^6.13.1",
"tough-cookie": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"globals": "^15.12.0",
"nodemon": "^2.0.22",
"prettier": "^3.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"funding": [
{
"type": "buymeacoffee",
"url": "https://buymeacoffee.com/jvandal"
},
{
"type": "paypal",
"url": "https://paypal.me/joelvandal"
},
{
"type": "interac",
"url": "mailto:[email protected]"
}
]
}