forked from auth0/node-oauth2-jwt-bearer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 988 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
35
36
37
38
39
{
"name": "access-token-jwt",
"private": true,
"license": "MIT",
"author": "Auth0 <[email protected]>",
"version": "0.0.1-test.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest test --coverage",
"lint": "eslint --fix --ext .ts ./src",
"prebuild": "rimraf dist",
"build": "tsc"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.11",
"@types/jest": "^27.5.2",
"@types/node": "^14.18.42",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"jest": "^29.5.0",
"jest-junit": "^13.2.0",
"nock": "^13.3.0",
"prettier": "~2.5.1",
"rimraf": "^5.0.8",
"sinon": "^12.0.1",
"ts-jest": "^29.0.5",
"tslib": "^2.5.0",
"typescript": "^5.0.2"
},
"dependencies": {
"jose": "^4.13.1"
},
"engines": {
"node": "^12.19.0 || ^14.15.0 || ^16.13.0 || ^18.12.0 || ^20.2.0"
}
}