-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.16 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
{
"name": "passport-discord-token",
"version": "2.1.1",
"description": "Discord access token authentication strategy for Passport",
"keywords": [
"passport",
"discord",
"auth",
"authn",
"authentication",
"identity",
"token"
],
"homepage": "https://github.com/rahil-p/passport-discord-token#readme",
"bugs": {
"url": "https://github.com/rahil-p/passport-discord-token/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rahil-p/passport-discord-token.git"
},
"author": {
"name": "Rahil Patel",
"url": "https://github.com/rahil-p"
},
"files": [
"src"
],
"main": "src/index.js",
"scripts": {
"lint": "eslint --fix .",
"test": "nyc --reporter=lcov mocha"
},
"dependencies": {
"passport-oauth": "^1.0.0"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-passport-strategy": "^1.0.1",
"codecov": "^3.8.2",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-mocha": "^8.1.0",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"sinon": "^10.0.0"
},
"engines": {
"node": ">=12.0.0"
}
}