-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.04 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.04 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@harperfast/oauth",
"version": "1.4.0",
"description": "OAuth 2.0 authentication plugin for Harper",
"license": "Apache-2.0",
"author": {
"name": "HarperDB, Inc.",
"email": "opensource@harperdb.io",
"url": "https://harper.fast/"
},
"contributors": [],
"homepage": "https://harper.fast/",
"repository": {
"type": "git",
"url": "https://github.com/HarperFast/oauth.git"
},
"bugs": {
"url": "https://github.com/HarperFast/oauth/issues",
"email": "opensource@harperdb.io"
},
"keywords": [
"harperdb",
"harper",
"plugin",
"oauth",
"oauth2",
"authentication",
"oidc",
"openid"
],
"type": "module",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./config": "./config.yaml"
},
"files": [
"dist/",
"assets/",
"schema/",
"config.yaml",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc || true",
"dev": "tsc --watch",
"test": "npm run build && node --test \"test/**/*.test.js\"",
"test:watch": "npm run build && node --test --watch \"test/**/*.test.js\"",
"test:coverage": "npm run build && node --enable-source-maps --test --experimental-test-coverage --test-coverage-exclude='test/**' --test-coverage-exclude='**/harperdb/**' \"test/**/*.test.js\"",
"test:node-twenty": "npm run build && node --test test/",
"lint": "eslint . --ignore-pattern 'dist/**'",
"format": "prettier .",
"format:check": "npm run format -- --check",
"format:write": "npm run format -- --write",
"prepublishOnly": "npm run build"
},
"dependencies": {
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0"
},
"devDependencies": {
"@harperdb/code-guidelines": "^0.0.5",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.11.0",
"eslint": "^9.35.0",
"harperdb": "^4.7.14",
"prettier": "^3.6.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"harperdb": ">=4.6.0"
},
"engines": {
"node": ">=20",
"bun": ">=1.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=20",
"onFail": "error"
},
"packageManager": {
"name": "npm",
"onFail": "error"
}
}
}