This repository has been archived by the owner on May 7, 2024. It is now read-only.
forked from opengovsg/mockpass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.03 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@opengovsg/mockpass",
"version": "2.7.4",
"description": "A mock SingPass/CorpPass server for dev purposes",
"main": "index.js",
"bin": {
"mockpass": "index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon",
"cz": "git-cz",
"lint": "eslint lib",
"lint-fix": "eslint --fix lib",
"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": {
"@xmldom/xmldom": "^0.8.8",
"base-64": "^1.0.0",
"cookie-parser": "^1.4.6",
"dotenv": "^10.0.0",
"expiry-map": "^1.1.0",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"mustache": "^4.2.0",
"node-jose": "^2.2.0",
"pem": "^1.14.8",
"uuid": "^8.0.0",
"xml-crypto": "^2.1.5",
"xml-encryption": "^2.0.0",
"xpath": "0.0.32"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@commitlint/travis-cli": "^17.6.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^3.4.1",
"lint-staged": "^11.2.6",
"nodemon": "^3.0.1",
"pinst": "^2.1.6",
"prettier": "^2.8.8",
"serverless-stack-termination-protection": "^2.0.2"
},
"overrides": {
"minimist": "^1.2.6"
},
"lint-staged": {
"**/*.(js|jsx|ts|tsx)": [
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}