forked from markelog/auth0-access-token-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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
{
"name": "auth0-access-token-jwt",
"license": "MIT",
"author": "Oleg Gaydarenko <[email protected]>",
"version": "1.0.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/markelog/auth0-access-token-jwt.git"
},
"scripts": {
"test": "jest test --coverage",
"eslint": "eslint --ext .ts .",
"lint:fix": "npm run eslint -- --fix",
"lint": "npm run eslint",
"prebuild": "rimraf dist",
"build": "tsc"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.9",
"@types/body": "^5.1.1",
"@types/jest": "^27.0.3",
"@types/node": "^18.15.11",
"@types/sinon": "^10.0.6",
"@types/type-is": "^1.6.3",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"body": "^5.1.0",
"eslint": "^8.4.1",
"got": "^11.8.5",
"jest": "^27.4.5",
"jest-junit": "^13.0.0",
"nock": "^13.2.9",
"prettier": "~2.5.1",
"rimraf": "^3.0.2",
"sinon": "^12.0.1",
"ts-jest": "^27.1.1",
"tslib": "^2.3.1",
"type-is": "^1.6.18",
"typescript": "^4.5.4"
},
"dependencies": {
"jose": "^4.9.2"
},
"engines": {
"node": "^12.19.0 || ^14.15.0 || ^16.13.0 || ^18.15.0"
}
}