-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "@mrbatista/passport-apple-token",
"version": "1.0.0",
"description": "Passport strategy for authenticating with Apple via identity token",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"coveralls": "cat coverage/lcov.info | coveralls",
"semantic-release": "semantic-release",
"test": "babel-node ./node_modules/.bin/isparta cover _mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/mrbatista/passport-apple-token.git"
},
"keywords": [
"passport",
"apple",
"token",
"auth",
"authentication"
],
"author": "Matteo Padovano <mrbatista@users.noreply.github.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrbatista/passport-apple-token/issues"
},
"homepage": "https://github.com/mrbatista/passport-apple-token",
"dependencies": {
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.9.0",
"passport-oauth": "^1.0.0"
},
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.1",
"chai-passport-strategy": "^1.0.1",
"coveralls": "^3.0.8",
"isparta": "^4.1.1",
"mocha": "^7.0.1",
"semantic-release": "^17.1.1",
"sinon": "^9.0.3"
},
"publishConfig": {
"access": "public"
}
}