-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 884 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 884 Bytes
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
{
"name": "node-socialite",
"version": "1.5.4",
"description": "Socialite is an OAuth2 authentication tool for Node.js",
"main": "dist/index.js",
"scripts": {
"release": "npx package-release",
"build": "rm -rf dist && npx tsc",
"test": "npx mocha ./test/**/*.js"
},
"repository": {
"type": "git",
"url": "git@github.com:hpyer/node-socialite.git"
},
"keywords": [
"oauth2",
"oauth2-authentication",
"socialite",
"social-login",
"github",
"wechat",
"wework",
"weibo",
"qq",
"douyin",
"taobao",
"gitee",
"coding"
],
"author": "Hpyer",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.19.40",
"mocha": "^11.7.5",
"package-release": "^1.0.4",
"sinon": "^12.0.1",
"typescript": "^5.9.3"
},
"dependencies": {
"axios": "^1.16.0",
"qs": "^6.15.1"
}
}