UNPKG

@opengovsg/mockpass

Version:

A mock SingPass/CorpPass server for dev purposes

81 lines (80 loc) 2.02 kB
{ "name": "@opengovsg/mockpass", "version": "4.5.0", "description": "A mock SingPass/CorpPass server for dev purposes", "main": "app.js", "bin": { "mockpass": "index.js" }, "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "start": "nodemon index", "cz": "git-cz", "lint": "eslint lib", "lint-fix": "eslint --fix lib", "prepare": "node .husky/install.mjs", "prepublishOnly": "pinst --disable", "postpublish": "pinst --enable" }, "repository": { "type": "git", "url": "git+https://github.com/opengovsg/mockpass.git" }, "keywords": [ "mock", "test", "singpass", "corppass" ], "author": "Government Technology Agency of Singapore (https://www.tech.gov.sg)", "license": "MIT", "bugs": { "url": "https://github.com/opengovsg/mockpass/issues" }, "homepage": "https://github.com/opengovsg/mockpass#readme", "engines": { "node": ">=8.0.0" }, "dependencies": { "base-64": "^1.0.0", "cookie-parser": "^1.4.3", "dotenv": "^17.2.0", "expiry-map": "^2.0.0", "express": "^5.1.0", "jose": "^5.2.3", "jsonwebtoken": "^9.0.0", "lodash": "^4.17.11", "morgan": "^1.9.1", "mustache": "^4.2.0", "node-jose": "^2.0.0", "uuid": "^9.0.0" }, "devDependencies": { "@commitlint/cli": "^19.1.0", "@commitlint/config-conventional": "^19.0.3", "@commitlint/travis-cli": "^19.0.3", "@eslint/eslintrc": "^3.1.0", "@eslint/js": "^9.8.0", "commitizen": "^4.2.4", "cz-conventional-changelog": "^3.2.0", "eslint": "^9.8.0", "eslint-config-prettier": "^10.1.8", "eslint-plugin-prettier": "^4.0.0", "globals": "^16.0.0", "husky": "^9.0.11", "lint-staged": "^15.2.2", "nodemon": "^3.0.1", "pinst": "^3.0.0", "prettier": "^2.0.5" }, "lint-staged": { "**/*.(js|jsx|ts|tsx)": [ "eslint --fix" ] }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } } }