-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.29 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
{
"name": "@oauth-everything/passport-patreon",
"version": "1.0.1",
"description": "Patreon 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-patreon.git"
},
"keywords": [
"oauth",
"patreon",
"passport"
],
"author": "Tyler Schrock <[email protected]>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/oauth-everything/passport-patreon/issues"
},
"homepage": "https://github.com/oauth-everything/passport-patreon",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.1.0",
"@typescript-eslint/parser": "^2.1.0",
"eslint": "^6.3.0",
"rimraf": "^3.0.0",
"typescript": "^3.6.2"
},
"dependencies": {
"@oauth-everything/oauth2-types": "^1.0.1",
"@oauth-everything/profile": "^1.0.0",
"@types/passport-oauth2": "^1.4.8",
"jsonapi-typescript": "^0.1.3",
"passport-oauth2": "^1.5.0"
}
}