-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
69 lines (69 loc) · 1.8 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
67
68
69
{
"name": "@hawtio/online-kubernetes-api",
"version": "0.0.0",
"description": "An API for interacting with 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",
"camel",
"kubernetes"
],
"scripts": {
"build": "tsup --clean",
"build:watch": "tsup --watch",
"test": "jest --watchAll=false --passWithNoTests",
"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/online-oauth": "workspace:*",
"@hawtio/react": "^1.2.0",
"@types/jquery": "^3.5.29",
"@types/jsonpath": "^0.2.4",
"@types/node": "^18.19.28",
"eventemitter3": "^5.0.1",
"jquery": "^3.7.0",
"jsonpath": "^1.1.1",
"kubernetes-types": "^1.26.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.2",
"@types/jest": "^29.5.12",
"babel-jest": "^29.6.1",
"eslint-config-react-app": "^7.0.1",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"jest-extended": "^4.0.0",
"jest-fetch-mock": "^3.0.3",
"jest-watch-typeahead": "^2.2.2",
"replace": "^1.2.2",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2"
},
"peerDependencies": {
"react": "^16.8 || ^17 || ^18",
"react-dom": "^16.8 || ^17 || ^18"
},
"packageManager": "[email protected]",
"engines": {
"yarn": ">=4.1.0",
"node": ">=18"
},
"publishConfig": {
"access": "restricted"
}
}