-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 loc) · 1.15 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
{
"name": "@kubescape/install",
"version": "0.4.4",
"description": "Installing kubescape binaries for third parties",
"publisher": "kubescape",
"author": {
"name": "David Delarosa",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Amir Malka",
"email": "[email protected]"
}
],
"main": "out/src/index.js",
"files": [
"out/src/index.d.ts"
],
"scripts": {
"compile": "tsc -watch -p ./",
"start": "npm run compile",
"test": "jest --coverage",
"prepare": "tsc -p ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kubescape/node-kubescape.git"
},
"keywords": [
"kubescape",
"kubernetes",
"vscode",
"lens",
"containers"
],
"license": "Apache-2.0",
"dependencies": {
"abort-controller": "^3.0.0",
"compare-versions": "^5.0.1",
"node-fetch": "^2.6.0",
"which": "^3.0.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@types/node-fetch": "^2.6.2",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}