-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
60 lines (60 loc) · 1.51 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
54
55
56
57
58
59
60
{
"name": "passport-telegram-official",
"version": "2.0.1",
"description": "Telegram (not official, just the name) authentication strategy for Passport (https://core.telegram.org/widgets/login)",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "microbundle --target node",
"prepublish": "npm run build",
"lint": "eslint --fix src/**/*.ts",
"test": "jest"
},
"keywords": [
"passport",
"telegram",
"auth",
"login",
"oauth"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Blitss/passport-telegram-official.git"
},
"author": "Andrey Vasilev",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"bugs": {
"url": "https://github.com/Blitss/passport-telegram-official/issues"
},
"release": {
"branch": "master"
},
"homepage": "https://github.com/Blitss/passport-telegram-official#readme",
"dependencies": {
"passport-strategy": "^1.0.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/express-serve-static-core": "^4.17.24",
"@types/lodash": "^4.14.172",
"@types/passport-strategy": "^0.2.35",
"@ythub/eslint-config": "^1.1.0",
"body-parser": "^1.19.0",
"eslint": "^7.32.0",
"express": "^4.17.1",
"microbundle": "^0.13.3",
"typescript": "^4.4.3"
},
"peerDependencies": {
"express": "*",
"passport": "^0.4.1"
}
}