-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 890 Bytes
/
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
{
"name": "mock-jwt-example",
"version": "1.0.0",
"description": "Example for how to mock a JSON Web Token",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "mocha --recursive --colors",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carterbancroft/mock-jwt-example.git"
},
"author": "Carter Bancroft",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/carterbancroft/mock-jwt-example/issues"
},
"homepage": "https://github.com/carterbancroft/mock-jwt-example#readme",
"dependencies": {
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"jwks-rsa": "^1.6.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"jsonwebtoken": "^8.5.1",
"mocha": "^7.0.1",
"nock": "^11.7.2",
"request-promise-native": "^1.0.8"
}
}