-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.26 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
{
"name": "@oauth-everything/passport-discord",
"version": "1.0.2",
"description": "Discord OAuth 2.0 strategy for Passport.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "eslint ./src/**/*.ts",
"build": "tsc -p .",
"clean": "rimraf dist",
"build-full": "npm run clean && npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/oauth-everything/passport-discord.git"
},
"keywords": [
"oauth",
"discord",
"passport"
],
"author": "Tyler Schrock <[email protected]>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/oauth-everything/passport-discord/issues"
},
"homepage": "https://github.com/oauth-everything/passport-discord",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"rimraf": "^3.0.2",
"typescript": "^4.1.3"
},
"dependencies": {
"@oauth-everything/oauth2-types": "^1.0.2",
"@oauth-everything/profile": "^1.0.0",
"@types/passport-oauth2": "^1.4.10",
"passport-oauth2": "^1.5.0"
}
}