passport-apple-token
Version:
Sign in with Apple strategy for Passport
57 lines (56 loc) • 1.24 kB
JSON
{
"name": "passport-apple-token",
"version": "0.0.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": "nico@kaiser.me",
"url": "https://kaiser.me/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/growlot/passport-apple-token.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"
}
}