forked from nicokaiser/passport-apple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.21 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
{
"name": "@nicokaiser/passport-apple",
"version": "0.2.1",
"description": "Sign in with Apple strategy for Passport",
"keywords": [
"passport",
"auth",
"authn",
"authentication",
"authz",
"authorization",
"apple",
"appleid"
],
"main": "./lib",
"scripts": {
"lint": "eslint \"**/*.js\"",
"test": "mocha --reporter spec test/*.test.js test/**/*.test.js && eslint \"**/*.js\""
},
"pre-commit": "test",
"author": {
"name": "Nico Kaiser",
"email": "[email protected]",
"url": "https://kaiser.me/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nicokaiser/passport-apple.git"
},
"dependencies": {
"jsonwebtoken": "^8.5.1",
"oauth": "^0.9.15",
"passport-strategy": "^1.0.0",
"uid2": "0.0.3"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-passport-strategy": "^1.0.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"mocha": "^7.1.1",
"prettier": "^2.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint"
}
}