forked from opengovsg/mockpass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.91 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
{
"name": "@opengovsg/mockpass",
"version": "3.0.3",
"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": "node index.js",
"cz": "git-cz",
"lint": "eslint lib",
"lint-fix": "eslint --fix lib",
"postinstall": "husky install",
"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": "^16.0.0",
"expiry-map": "^2.0.0",
"express": "^4.16.3",
"jsonwebtoken": "^8.4.0",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.11",
"morgan": "^1.9.1",
"mustache": "^4.2.0",
"node-jose": "^2.0.0",
"uuid": "^9.0.0",
"xpath": "0.0.32"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@commitlint/travis-cli": "^17.1.2",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.4",
"pinst": "^3.0.0",
"prettier": "^2.0.5"
},
"lint-staged": {
"**/*.(js|jsx|ts|tsx)": [
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}