forked from GovTechSG/singpass-myinfo-oidc-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.8 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
{
"name": "@govtechsg/singpass-myinfo-oidc-helper",
"version": "3.2.0",
"description": "Helper for building a Relying Party to integrate with Singpass OIDC and MyInfo person basic API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "github:GovTechSG/singpass-myinfo-oidc-helper",
"bugs": "https://github.com/GovTechSG/singpass-myinfo-oidc-helper/issues",
"scripts": {
"prepublishOnly": "npm run build",
"test": "./shared-scripts/jest-test.sh --maxWorkers=10 --coverage",
"test:api": "npm run test -- --config jest.api.config.js",
"lint": "./shared-scripts/ts-lint.sh",
"build": "./scripts/build.sh",
"watch": "export TS_NODE_PROJECT=./tsconfig.script.json && webpack --config webpack.watch.config.ts"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm audit && npm run test && npm run build"
}
},
"lint-staged": {
"*.ts": [
"npm run lint --",
"git add"
]
},
"license": "MIT",
"dependencies": {
"@types/rosie": "0.0.37",
"axios": "^0.19.0",
"http-status-codes": "^1.4.0",
"https-proxy-agent": "^3.0.1",
"is-base64": "^1.0.0",
"js-joda": "^1.11.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"node-jose": "^1.1.3",
"nonce": "^1.0.4",
"proxy-agent": "^3.1.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.8",
"rosie": "^2.0.1"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.14",
"@types/request": "^2.48.3",
"@types/request-promise-native": "^1.0.17",
"dotenv": "^8.2.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"jest-bamboo-formatter": "^1.0.1",
"lint-staged": "^9.5.0",
"ts-jest": "^25.4.0",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"tslint-config-security": "^1.16.0",
"tslint-sonarts": "^1.9.0",
"typescript": "^3.7.2"
}
}