forked from nicokaiser/passport-apple
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.17 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.17 KB
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
{
"name": "@peulda/passport-apple",
"version": "2.0.0",
"description": "Sign in with Apple strategy for Passport",
"keywords": [
"passport",
"auth",
"authn",
"authentication",
"authz",
"authorization",
"apple",
"appleid"
],
"files": ["./lib/*"],
"main": "./lib",
"scripts": {
"lint": "eslint \"**/*.js\"",
"test": "mocha --reporter spec test/*.test.js test/**/*.test.js && eslint \"**/*.js\""
},
"pre-commit": "test",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/peulda-official/passport-apple.git"
},
"dependencies": {
"jsonwebtoken": "^9.0.0",
"jwks-rsa": "^3.0.1",
"oauth": "^0.10.0",
"passport-strategy": "^1.0.0",
"uid2": "1.0.0"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-passport-strategy": "^3.0.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"mocha": "^10.2.0",
"prettier": "^2.8.1"
},
"lint-staged": {
"*.js": "eslint"
},
"engines": {
"node": ">=12"
},
"publishConfig": {
"access": "public"
}
}