forked from abouroubi/passport-google-verify-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.6 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
{
"name": "passport-google-verify-token",
"version": "1.2.7",
"description": "Google Token strategy for Passport, let's you validate the user token server side, usefull for mobile app Google authentication for example. The validation is done by the official Google Auth library for NodeJs.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"clean": "rimraf lib",
"test": "mocha -r ts-node/register tests/**/*.test.ts --reporter mocha-junit-reporter --reporter-options mochaFile=./TEST-RESULTS.xml",
"cover": "nyc -r lcov -e .ts -x \"*.test.ts\" mocha -r ts-node/register tests/**/*.test.ts && nyc report",
"lint": "tslint -p tsconfig.json",
"build": "tsc",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"passport",
"google",
"token",
"authentication",
"nodejs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/abouroubi/passport-google-verify-token.git"
},
"author": "Abdou BOUROUBI",
"license": "MIT",
"dependencies": {
"google-auth-library": "^6.1.1",
"passport-strategy": "^1.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.13",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.25",
"@types/passport-strategy": "^0.2.35",
"chai": "^4.2.0",
"chai-passport-strategy": "^1.0.1",
"mocha": "^7.2.0",
"mocha-junit-reporter": "^1.23.3",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.7"
}
}