forked from codefresh-io/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.8 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "codefresh",
"version": "0.28.1",
"description": "Codefresh command line utility",
"main": "index.js",
"preferGlobal": true,
"scripts": {
"generate-completion": "node ./lib/interface/cli/completion/generate",
"test": "jest .spec.js --coverage",
"eslint": "eslint lib1logic/**",
"ci-publish": "ci-publish",
"pkg": "pkg . -t node10-alpine-x64,node10-macos-x64,node10-linux-x64,node10-win-x64 --out-path ./dist",
"serve-docs": "yarn build-local-docs && cd temp && hugo server -D",
"serve-docs-beta": "ALLOW_BETA_COMMANDS=true yarn build-local-docs && cd temp && hugo server -D",
"build-local-docs": "node ./docs/index.js",
"build-public-docs": "node ./docs/index.js && cd temp && hugo",
"postinstall": "node check-version.js"
},
"bin": {
"codefresh": "./lib/interface/cli/codefresh"
},
"repository": "git+https://github.com/codefresh-io/cli.git",
"keywords": [
"command line"
],
"pkg": {
"scripts": [
"lib/**/*.js",
"node_modules/codefresh-sdk/lib/**/*.js"
],
"assets": "lib/**/*.hbs"
},
"dependencies": {
"@codefresh-io/docker-reference": "^0.0.5",
"ajv": "^6.6.1",
"bluebird": "^3.5.1",
"cf-errors": "^0.1.11",
"chalk": "^1.1.3",
"codefresh-sdk": "^1.0.5",
"cli-progress": "^1.6.1",
"colors": "^1.1.2",
"columnify": "^1.5.4",
"compare-versions": "^3.4.0",
"copy-dir": "^0.3.0",
"debug": "^3.1.0",
"decompress": "^4.2.0",
"decompress-targz": "^4.1.1",
"diff": "^3.5.0",
"dockerode": "^2.5.7",
"draftlog": "^1.0.12",
"filesize": "^3.5.11",
"firebase": "git+https://github.com/codefresh-io/firebase.git#80b2ed883ff281cd67b53bd0f6a0bbd6f330fed5",
"flat": "^4.1.0",
"js-yaml": "^3.10.0",
"jsonwebtoken": "^8.1.0",
"kefir": "^3.8.1",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"moment": "^2.19.4",
"mongodb": "^3.0.1",
"ora": "^3.0.0",
"prettyjson": "^1.2.1",
"recursive-readdir": "^2.2.1",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"requestretry": "^3.1.0",
"rimraf": "^2.6.2",
"semver": "^5.6.0",
"uuid": "^3.1.0",
"yargs": "^10.0.3",
"yargs-parser": "^13.0.0"
},
"devDependencies": {
"ci-publish": "^1.3.0",
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^22.4.1",
"hugo-cli": "^0.5.4",
"jest": "^23.6.0",
"pkg": "4.3.8"
},
"bugs": {
"url": "https://github.com/codefresh-io/cli/issues"
},
"homepage": "https://github.com/codefresh-io/cli#readme",
"author": "Codefresh",
"license": "ISC",
"engines": {
"node": ">=8.0.0"
},
"jest": {
"testEnvironment": "node",
"setupFiles": [
"./test-setup.js"
]
},
"yargs": {
"boolean-negation": false
}
}