forked from axa-group/oauth2-mock-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.35 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
{
"name": "oauth2-mock-server",
"version": "1.5.1",
"description": "OAuth 2 mock server",
"keywords": [
"oauth",
"oauth2",
"oauth 2",
"mock",
"server",
"cli",
"jwt",
"oidc",
"openid connect"
],
"author": {
"name": "Jorge Poveda",
"email": "jorge.poveda@axa-assistance.es"
},
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/axa-group/oauth2-mock-server.git"
},
"main": "index.js",
"bin": {
"oauth2-mock-server": "./bin/oauth2-mock-server"
},
"files": [
"CHANGELOG.md",
"README.md",
"index.js",
"bin/",
"lib/"
],
"scripts": {
"cleanup:testresults": "rimraf TestResults",
"eslint": "eslint . bin/*",
"jest": "jest",
"pretest": "npm run cleanup:testresults && npm run eslint",
"test": "npm run jest"
},
"dependencies": {
"basic-auth": "^2.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"node-jose": "^1.1.4",
"uuid": "^7.0.3"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"jest": "^25.2.7",
"jest-junit": "^10.0.0",
"rimraf": "^3.0.2",
"supertest": "^4.0.2"
}
}