forked from auth0/node-oauth2-jwt-bearer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 908 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
{
"name": "oauth2-bearer",
"private": true,
"license": "MIT",
"author": "Auth0 <[email protected]>",
"version": "0.0.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest test --coverage",
"lint": "eslint --fix --ext .ts ./src",
"build": "tsc",
"prebuild": "rimraf dist"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.9",
"@types/body": "^5.1.1",
"@types/jest": "^27.0.3",
"@types/node": "^14.18.0",
"@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",
"prettier": "~2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.1",
"type-is": "^1.6.18",
"typescript": "^4.5.4"
},
"engines": {
"node": ">=12.0.0"
}
}