-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.21 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.21 KB
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
{
"name": "@renderforest/service-auth",
"description": "Auth service to set authorization and authorize requests",
"version": "2.1.4",
"author": "RenderForest LLC",
"bugs": {
"url": "https://github.com/renderforest/service-auth/issues"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@tsconfig/node24": "^24.0.1",
"@types/express": "^5.0.3",
"@types/jest": "^29.5.14",
"@types/node": "^24.2.0",
"axios": "^1.11.0",
"eslint": "^9.32.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0"
},
"engines": {
"node": ">=18.17.0"
},
"homepage": "https://github.com/renderforest/service-auth#readme",
"keywords": [
"auth",
"authorize",
"service",
"set-authorization"
],
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/renderforest/service-auth"
},
"scripts": {
"build": "rm -rf dist && tsc",
"lint": "eslint --fix",
"lint-no-fix": "eslint",
"test": "jest --silent",
"test-coverage": "jest --coverage --silent",
"test-watch": "jest --watch --silent",
"prepare": "husky"
}
}