-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 1.94 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "kubernetes-axios-informer",
"version": "0.0.8",
"description": "Informer for kubernete based axios",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/XiaocongDong/kubernetes-axios-informer.git",
"files": [
"dist/*.ts",
"dist/*.js",
"README.md"
],
"scripts": {
"format": "prettier --loglevel error --write \"./src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"test": "jest",
"build": "tsc"
},
"author": "Dong Xiaocong <buptdxc@gmail.com>",
"license": "MIT",
"peerDependencies": {
"@kubernetes/client-node": "^0.14.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"transform": {
"^.+\\.tsx?": "ts-jest"
},
"testRegex": "(/__tests/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"rootDir": "src",
"testEnvironment": "node",
"verbose": false,
"moduleDirectories": [
"node_modules",
"src"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@kubernetes/client-node": "^0.14.0",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^5.1.3",
"jest": "^26.6.3",
"lint-staged": "^10.5.2",
"prettier": "^2.2.1",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.2.3"
},
"dependencies": {
"@types/request": "^2.48.5",
"axios": "^0.21.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}