-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.16 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "lens-extension-network-policy-viewer",
"version": "3.0.0",
"author": "Artur Babyuk (https://github.com/artturik)",
"description": "Lens extension to view network policy",
"repository": {
"type": "git",
"url": "https://github.com/artturik/lens-extension-network-policy-viewer.git"
},
"main": "dist/main.js",
"renderer": "dist/renderer.js",
"scripts": {
"start": "webpack --watch",
"build": "npm run clean && webpack",
"clean": "rimraf ./dist",
"semantic-release": "semantic-release"
},
"files": [
"dist/"
],
"engines": {
"lens": "^6.0.0"
},
"devDependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@k8slens/extensions": "^6.0.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/js-yaml": "^4.0.5",
"@types/node": "^16.3.1",
"@types/react": "^17.0.14",
"css-loader": "^6.7.1",
"husky": "^7.0.1",
"lint-staged": "^11.0.0",
"network-policy-viewer": "^2.0.1",
"prettier": "2.3.2",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.1",
"typescript": "^4.8.2",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2"
},
"license": "MIT",
"homepage": "https://github.com/artturik/lens-extension-network-policy-viewer",
"bugs": {
"url": "https://github.com/artturik/lens-extension-network-policy-viewer/issues"
},
"keywords": [
"extension",
"k8slens",
"lens",
"network-policy"
],
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"assets": [
{
"path": "*.tgz",
"name": "lens-extension-network-policy-viewer.tgz"
}
]
}
],
"@semantic-release/git"
]
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"js-yaml": "^4.1.0",
"react-dom": "^17.0.2"
}
}