-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.08 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
{
"name": "@indivorg/runner",
"version": "2.2.1",
"repository": "github:indivorg/runner",
"license": "Apache-2.0",
"author": "Indiv AS",
"main": "dist/main.js",
"bin": {
"indiv-runner": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "ts-node src/main.ts",
"test": "jest --coverage src/**/*",
"lint": "eslint \"src/**/*.ts\" --fix"
},
"eslintConfig": {
"extends": "@indivorg/eslint-config"
},
"dependencies": {
"@kubernetes/client-node": "^0.15.0",
"commander": "^8.0.0",
"get-port": "^5.1.1",
"ora": "^5.4.1",
"ts-invariant": "^0.9.0"
},
"devDependencies": {
"@indivorg/eslint-config": "^2",
"@types/jest": "^26.0.24",
"@types/node": "^14",
"eslint": "^7.30.0",
"jest": "^27.0.6",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"engines": {
"node": ">=12"
},
"publishConfig": {
"access": "public"
},
"volta": {
"node": "14.15.0",
"yarn": "1.22.10"
}
}