This repository was archived by the owner on Jul 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.39 KB
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
{
"name": "rhoaster",
"version": "0.4.1",
"description": "A module to help with integration testing OpenShift Node.js applications",
"main": "index.js",
"author": "Red Hat, Inc.",
"license": "Apache-2.0",
"scripts": {
"test": "tape test/*.js | tap-spec",
"pretest": "eslint --ignore-path .gitignore .",
"coverage": "nyc tape test/*.js",
"docs": "./node_modules/.bin/jsdoc --verbose -d docs -t ./node_modules/ink-docstrap/template -R README.md index.js",
"release": "standard-version",
"prepare": "husky install"
},
"engines": {
"node": "^16 || ^14 || ^12"
},
"repository": {
"type": "git",
"url": "git://github.com/nodeshift/rhoaster.git"
},
"files": [
"index.js"
],
"bugs": {
"url": "https://github.com/nodeshift/rhoaster/issues"
},
"homepage": "https://github.com/nodeshift/rhoaster",
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^7.30.0",
"eslint-config-semistandard": "^15.0.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"https-proxy-agent": "^5.0.0",
"husky": "^6.0.0",
"nyc": "^15.1.0",
"sshpk": "~1.16.1",
"standard-version": "^9.3.2",
"tap-spec": "^5.0.0",
"tape": "^5.3.1"
},
"dependencies": {
"nodeshift": "~8.6.0",
"openshift-rest-client": "~6.1.0"
}
}