This repository has been archived by the owner on Jan 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
53 lines (53 loc) · 1.77 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
{
"name": "@project-octant/plugin-for-knative",
"version": "0.3.0",
"description": "Octant Plugin for Knative",
"license": "Apache-2.0",
"keywords": [
"octant",
"octant-plugin",
"knative",
"serving"
],
"homepage": "https://octant.dev",
"bugs": {
"url": "https://github.com/vmware-tanzu/octant-plugin-for-knative/issues"
},
"private": true,
"scripts": {
"plugin:check": "tsc --noEmit",
"plugin:watch": "npx tsc-watch --noEmit --onSuccess \"npm run plugin:dev-no-check\"",
"plugin:dev-no-check": "webpack --output ~/.config/octant/plugins/knative.js",
"plugin:dev": "tsc --noEmit && webpack --output ~/.config/octant/plugins/knative.js",
"plugin:prod": "tsc --noEmit && webpack --env=production --output dist/knative.js",
"plugin:install": "tsc --noEmit && webpack --env=production --output ~/.config/octant/plugins/knative.js"
},
"dependencies": {
"@kubernetes/client-node": "^0.12.0",
"@project-octant/plugin": "^0.2.1",
"route-recognizer": "^0.3.4",
"yaml": "^1.10.0"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.10.1",
"@babel/plugin-transform-object-set-prototype-of-to-assign": "^7.10.4",
"@babel/preset-env": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@babel/types": "^7.10.3",
"@types/core-js": "^2.5.3",
"@types/node": "^14.6.1",
"babel-loader": "^8.1.0",
"core-js": "^3.6.5",
"es-check": "^5.1.0",
"regenerator-runtime": "^0.13.5",
"ts-loader": "^8.0.3",
"tsc-watch": "^4.2.9",
"typescript": "^3.9.7",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
}
}