-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.01 KB
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
{
"name": "keycloak-mock",
"version": "1.0.10",
"description": "Keycloak server mock for Node.js",
"main": "dist/index.js",
"repository": "https://github.com/SectorLabs/keycloak-mock",
"author": "Sector Labs <open-source@sectorlabs.ro>",
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"build": "tsc",
"test": "jest -i tests/",
"format": "prettier --write '**/*.ts'",
"format:verify": "prettier --check '**/*.ts'",
"prepack": "yarn format && yarn build"
},
"devDependencies": {
"@types/jest": "^25.1.3",
"@types/jsonwebtoken": "^8.3.7",
"@types/node-jose": "^1.1.2",
"@types/qs": "^6.9.1",
"@types/uuid": "^7.0.0",
"axios": "^0.19.2",
"jest": "^24.0.0",
"prettier": "^1.19.1",
"qs": "^6.9.3",
"ts-jest": "^24.3.0",
"typescript": "^3.8.2"
},
"dependencies": {
"@types/lodash": "^4.14.149",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"nock": "^11.9.1",
"node-jose": "^1.1.3",
"uuid": "^7.0.2"
}
}