UNPKG

apple-signin-auth

Version:
104 lines (103 loc) 2.84 kB
{ "name": "apple-signin-auth", "version": "2.0.0", "description": " Apple signin for node.", "author": { "name": "Ahmed Tarek", "email": "ahmed.tokyo1@gmail.com", "url": "https://github.com/A-Tokyo" }, "repository": { "type": "git", "url": "https://github.com/a-tokyo/apple-signin-auth.git" }, "main": "lib/index.js", "types": "lib/index.d.ts", "files": [ "lib/" ], "homepage": "https://github.com/a-tokyo/apple-signin-auth#readme", "bugs": { "url": "https://github.com/a-tokyo/apple-signin-auth/issues" }, "scripts": { "start": "babel-node src/index.js", "dev": "yarn build --watch", "build": "rm -rf lib && yarn build:flow && yarn build:js && yarn build:typescript", "build:js": "babel src --out-dir lib -s --ignore *.test.js,**/*.test.js", "build:flow": "flow-copy-source -v -i '*.test.js' -i '**/*.test.js' src lib", "build:typescript": "cp typescript/index.d.ts lib", "prepublish": "export NODE_ENV=production && yarn build", "test": "npm run build && yarn jest", "test:typescript": "dtslint --localTs node_modules/typescript/lib --expectOnly typescript" }, "jest": { "testPathIgnorePatterns": [ "<rootDir>/typescript/", "<rootDir>/node_modules/" ] }, "dependencies": { "jsonwebtoken": "^9.0.0", "node-rsa": "^1.1.1" }, "devDependencies": { "@babel/cli": "^7.17.10", "@babel/plugin-proposal-class-properties": "^7.17.12", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.17.12", "@babel/plugin-proposal-optional-chaining": "^7.17.12", "@babel/plugin-transform-react-jsx": "^7.17.12", "@babel/preset-env": "^7.18.2", "@babel/preset-flow": "^7.17.12", "@testing-library/react-hooks": "^8.0.1", "babel-eslint": "^10.1.0", "babel-jest": "^28.1.1", "babel-plugin-lodash": "^3.3.4", "dtslint": "^4.2.1", "eslint": "^7.22.0", "eslint-config-airbnb": "^18.2.1", "eslint-config-prettier": "^8.1.0", "eslint-plugin-flowtype": "^5.4.0", "eslint-plugin-import": "^2.22.1", "eslint-plugin-jsx-a11y": "^6.4.1", "eslint-plugin-prettier": "^3.3.1", "eslint-plugin-react": "^7.22.0", "flow-bin": "^0.180.1", "flow-copy-source": "^2.0.9", "husky": "^4.2.5", "jest": "^28.1.1", "jest-cli": "^28.1.1", "lint-staged": "^12.5.0", "prettier": "2.7.1", "typescript": "^4.7.4" }, "husky": { "hooks": { "pre-commit": "lint-staged && eslint . --fix" } }, "lint-staged": { "*.js": [ "prettier --write", "git add" ] }, "license": "MIT", "keywords": [ "apple", "signin", "login", "auth", "authentication", "node", "jwt", "es6", "flow", "types", "typescript", "node" ], "engines": { "node": ">=18.0.0" } }