-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
61 lines (61 loc) · 1.77 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
{
"name": "kubelive",
"version": "0.0.0-development",
"description": "Kubernetes command line tool to provide live data about the cluster and it's resources",
"main": "./bin/kubelive.js",
"bin": {
"kubelive": "./bin/kubelive.js"
},
"keywords": [
"kubernetes",
"kube",
"kubectl",
"pods"
],
"scripts": {
"start": "node ./bin/kubelive.js",
"test": "cross-env NODE_ENV=test jest --config jest.config.json",
"test:watch": "cross-env NODE_ENV=test jest --watch --config jest.config.json",
"lint": "eslint . --ext .js --fix",
"lint:staged": "eslint --fix",
"coverage": "jest --coverage --config jest.config.json",
"prettify": "prettier --write",
"semantic-release": "semantic-release"
},
"repository": "https://github.com/ameerthehacker/kubelive.git",
"author": "ameerthehacker",
"license": "MIT",
"dependencies": {
"@kubernetes/client-node": "^0.10.2",
"clipboardy": "^2.1.0",
"commander": "^3.0.0",
"import-jsx": "^3.0.0",
"ink": "^2.3.0",
"ink-tab": "^2.1.3",
"javascript-time-ago": "^2.0.1",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"update-notifier": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@semantic-release/commit-analyzer": "^6.3.0",
"@semantic-release/npm": "^5.1.15",
"babel-jest": "^24.9.0",
"codecov": "^3.5.0",
"cross-env": "^7.0.2",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"eslint": "^6.2.1",
"eslint-plugin-react": "^7.14.3",
"husky": "^3.0.4",
"jest": "^24.9.0",
"lint-staged": "^9.2.3",
"prettier": "^1.18.2",
"react-dom": "^16.9.0",
"semantic-release": "^17.2.3"
}
}