forked from abouroubi/passport-apple-verify-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.85 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
{
"name": "passport-apple-verify-token",
"version": "1.1.1",
"description": "Sign In with Apple Token strategy for Passport, let's you validate the user token server side, usefull for mobile app SignIn with Apple authentication for example. The validation is done by using the public AppleID authentication keys.",
"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": "eslint -c .eslintrc.js --ext .ts src",
"build": "tsc",
"prepare": "npm run clean && npm run build"
},
"keywords": [
"passport",
"appleid",
"token",
"authentication",
"nodejs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/abouroubi/passport-apple-verify-token.git"
},
"author": "Abdou BOUROUBI",
"license": "MIT",
"dependencies": {
"axios": "^0.21.0",
"jose": "^2.0.3",
"passport-strategy": "^1.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.13",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.6",
"@types/passport-strategy": "^0.2.35",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"chai": "^4.2.0",
"chai-passport-strategy": "^1.0.1",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jsdoc": "^30.7.7",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-react": "^7.21.5",
"mocha": "^8.2.1",
"mocha-junit-reporter": "^2.0.0",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
}
}