-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 906 Bytes
/
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
{
"name": "node-socialite",
"version": "1.4.1",
"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 && cp -r src/Types dist/",
"test": "npx mocha ./test/**/*.js"
},
"repository": {
"type": "git",
"url": "[email protected]: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": "^17.0.23",
"mocha": "^9.2.2",
"package-release": "^1.0.3",
"sinon": "^12.0.1",
"typescript": "^4.6.3"
},
"dependencies": {
"axios": "^1.6.1",
"qs": "^6.11.2"
}
}