-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
37 lines (37 loc) · 913 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.11",
"@types/body": "^5.1.1",
"@types/jest": "^27.5.2",
"@types/node": "^14.18.42",
"@types/type-is": "^1.6.3",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"body": "^5.1.0",
"eslint": "^8.37.0",
"got": "^11.8.6",
"jest": "^29.5.0",
"jest-junit": "^13.2.0",
"prettier": "~2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.5",
"type-is": "^1.6.18",
"typescript": "^5.0.2"
},
"engines": {
"node": ">=12.0.0"
}
}