-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.46 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
{
"name": "kube-starter-template",
"version": "0.1.0",
"description": "A starter template for creating TypeScript, Node.JS apps that interface with kubernetes",
"main": "dist/app.js",
"scripts": {
"start": "node dist/app.js",
"build": "node_modules/typescript/bin/tsc --project ./",
"test": "jest --coverage --testPathPattern='test/.*\\.spec\\.ts'",
"lint": "eslint --ext .ts src/ test/",
"lint:fix": "eslint --ext .ts src/ test/ --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/curium-rocks/kube-starter-template.git"
},
"keywords": [
"k8s",
"kubernetes",
"starter",
"template",
"typescript",
"jest",
"inversify"
],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/curium-rocks/kube-starter-template/issues"
},
"homepage": "https://github.com/curium-rocks/kube-starter-template#readme",
"devDependencies": {
"@jest/globals": "29.7.0",
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.0.0",
"ts-jest": "29.x",
"ts-node": "^10.7.0",
"typescript": "^5.0.0"
},
"dependencies": {
"@kubernetes/client-node": "^0.22.0",
"inversify": "^6.0.1",
"reflect-metadata": "^0.2.0"
}
}