forked from gyselroth/kube-icinga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 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
{
"name": "kube-icinga",
"version": "1.0.0",
"description": "Icinga2 autodiscovery service for kubernetes",
"main": "main.js",
"scripts": {
"prebuild": "tsc",
"start": "tsc && nodejs build/main.js",
"build": "eslint --fix src/ --ext ts && tsc && jest --coverage",
"test": "jest --coverage",
"coveralls": "coveralls < coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raffis/kube-icinga.git"
},
"keywords": [
"icinga2",
"kubernetes",
"kube",
"autodiscovery"
],
"author": "Raffael Sahli <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/raffis/kube-icinga/issues"
},
"homepage": "https://github.com/raffis/kube-icinga#readme",
"dependencies": {
"icinga2-api": "raffis/nodejs-icinga2api",
"json-stream": "^1.0.0",
"kubernetes-client": "^5.3.0",
"winston": "^3.0.0-rc5"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/node": "^10.1.2",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"jest": "^23.0.1",
"source-map-support": "^0.5.6",
"ts-jest": "^22.4.6",
"typescript": "^2.8.3",
"typescript-eslint-parser": "^15.0.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}