forked from nodeshift/nodeshift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.26 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
83
{
"name": "nodeshift",
"version": "6.0.1",
"description": "Plugin for running openshift deployments",
"bin": {
"nodeshift": "./bin/nodeshift"
},
"scripts": {
"lint": "eslint bin/* lib/**/*.js test/*-test.js test/**/*-test.js index.js",
"test": "cross-env NODESHIFT_QUIET=true tape test/*-test.js test/**/*-test.js | tap-spec",
"coverage": "nyc npm test",
"coverage:html": "nyc npm test && nyc report --reporter=html",
"coveralls": "nyc npm test && nyc report && if [ $COVERALLS_REPO_TOKEN'' != '' ] ; then nyc report --reporter=text-lcov | coveralls; fi",
"docs": "documentation build index.js --shallow -f html -o docs --config documentation.yml",
"ci": "npm run lint && npm run coveralls",
"prerelease": "npm run lint && npm run test",
"release": "standard-version -a"
},
"standard-version": {
"scripts": {
"postbump": "npm run docs",
"precommit": "git add docs/"
}
},
"files": [
"package.json",
"README.md",
"LICENSE",
"index.js",
"example.js",
"lib",
"bin"
],
"engines": {
"node": ">= 10"
},
"repository": {
"type": "git",
"url": "nodeshift/nodeshift.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"support": {
"target": "LTS",
"response": "REGULAR-7",
"backing": "COMPANY"
},
"bugs": {
"url": "https://github.com/nodeshift/nodeshift/issues"
},
"homepage": "https://github.com/nodeshift/nodeshift#readme",
"dependencies": {
"chalk": "^3.0.0",
"git-repo-info": "^2.0.0",
"js-yaml": "~3.13.1",
"lodash": "^4.17.4",
"mkdirp": "^1.0.3",
"openshift-rest-client": "~4.0.0",
"tar": "~6.0.1",
"yargs": "^15.2.0"
},
"devDependencies": {
"coveralls": "~3.0.6",
"cross-env": "^7.0.1",
"documentation": "~12.1.0",
"eslint": "^6.0.1",
"eslint-config-semistandard": "^15.0.0",
"eslint-config-standard": "^14.0.0",
"eslint-plugin-import": "~2.20.1",
"eslint-plugin-node": "~11.0.0",
"eslint-plugin-promise": "~4.2.1",
"eslint-plugin-standard": "^4.0.0",
"ink-docstrap": "^1.3.2",
"nock": "^12.0.2",
"nyc": "~15.0.0",
"proxyquire": "^2.1.3",
"sinon": "~9.0.0",
"standard-version": "^7.0.0",
"tap-spec": "^5.0.0",
"tape": "~4.13.2"
}
}