-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
64 lines (64 loc) · 1.47 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
{
"name": "openshift-rest-client",
"version": "9.1.0",
"description": "Node.js client for developing with OpenShift",
"main": "index.js",
"type": "commonjs",
"scripts": {
"prepare": "husky install",
"pretest": "eslint --ignore-path .gitignore .",
"test": "nyc tape test/*-test.js | tap-spec",
"docs": "documentation build lib/** -f html -o docs"
},
"files": [
"package.json",
"package-support.json",
"README.md",
"LICENSE",
"index.js",
"lib"
],
"keywords": [
"Openshift",
"Node.js"
],
"author": {
"name": "Red Hat, Inc."
},
"maintainers": [
{
"name": "Lucas Holmquist",
"email": "lholmqui@redhat.com"
}
],
"engines": {
"node": "^22 || ^20 || ^18"
},
"repository": {
"type": "git",
"url": "nodeshift/openshift-rest-client"
},
"bugs": "https://github.com/nodeshift/openshift-rest-client/issues",
"license": "Apache-2.0",
"dependencies": {
"kubernetes-client": "9.0.0",
"undici": "^6.19.2"
},
"devDependencies": {
"coveralls": "~3.1.1",
"documentation": "^14.0.3",
"eslint": "^8.45.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.2.0",
"husky": "^7.0.4",
"nock": "^13.3.2",
"nyc": "~17.0.0",
"proxyquire": "^2.1.3",
"tap-spec": "^5.0.0",
"tape": "~5.8.1"
},
"support": true
}