-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.51 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
{
"name": "@cray/lens-cray",
"version": "6.1.0",
"author": "Di Zou",
"maintainers": [
{
"name": "Di Zou",
"email": "di.zou@hpe.com"
}
],
"description": "Lens extension for Cray CSM",
"repository": {
"type": "git",
"url": "https://github.com/dzou-hpe/lens-cray"
},
"engines": {
"lens": "^6.0.0"
},
"main": "dist/main.js",
"renderer": "dist/renderer.js",
"files": ["dist/renderer.js"],
"scripts": {
"start": "webpack --watch",
"build": "yarn run clean && webpack",
"clean": "rm -rf ./dist",
"link": "ln -s $(PWD) ${HOME}/.k8slens/extensions/cray",
"release": "git tag v$(cat package.json | jq -r '.version') && git push && git push --tags"
},
"dependencies": {
"@types/jsonpath": "^0.2.0",
"d3-force": "^3.0.0",
"d3-force-3d": "^3.0.3",
"jsonpath": "^1.1.1",
"lodash": "^4.17.21",
"mobx": "^6.5.0",
"mobx-react": "^7.3.0",
"react-dom": "^17.0.2",
"react-force-graph": "^1.41.12",
"react-force-graph-2d": "^1.23.10",
"react-open-doodles": "^1.0.5"
},
"devDependencies": {
"@k8slens/extensions": "^5.4.0",
"@types/d3-force": "^3.0.3",
"@types/lodash": "^4.14.180",
"@types/node": "^12.0.0",
"@types/react": "^16.9.35",
"semantic-release": "^19.0.2",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.11"
},
"license": "MIT",
"keywords": [
"example",
"extension",
"k8slens",
"lens",
"mirantis",
"tutorial"
]
}