-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
66 lines (66 loc) · 1.63 KB
/
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
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
{
"name": "@hawtio/online-oauth",
"private": true,
"version": "0.0.0",
"description": "Authentication components for kubernetes clusters",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Hawtio developer team",
"license": "Apache-2.0",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/hawtio/hawtio-online.git"
},
"keywords": [
"hawtio",
"oauth",
"openshift"
],
"scripts": {
"build": "tsup --clean",
"build:watch": "tsup --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"replace-version": "replace __PACKAGE_VERSION_PLACEHOLDER__ $npm_package_version ./dist/index.js",
"prepack": "yarn build && yarn replace-version"
},
"dependencies": {
"@hawtio/react": "^1.5.0",
"@thumbmarkjs/thumbmarkjs": "^0.16.0",
"babel-jest": "^29.6.1",
"fetch-intercept": "^2.4.0",
"jest-extended": "^4.0.0",
"jquery": "^3.7.0",
"jwt-decode": "^4.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"whatwg-fetch": "^3.6.20"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/jquery": "^3.5.31",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"jest-fetch-mock": "^3.0.3",
"jest-watch-typeahead": "^2.2.2",
"replace": "^1.2.2",
"ts-jest": "^29.2.5",
"tsup": "^8.2.4"
},
"peerDependencies": {
"react": "^16.8 || ^17 || ^18",
"react-dom": "^16.8 || ^17 || ^18"
},
"packageManager": "[email protected]",
"engines": {
"yarn": ">=4.3.1",
"node": ">=20"
},
"publishConfig": {
"access": "restricted"
}
}