-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.51 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.51 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "kyso",
"description": "Kyso Client",
"version": "1.17.18",
"author": "Kyso Inc.",
"bin": {
"kyso": "./bin/run"
},
"dependencies": {
"@kyso-io/kyso-store": "2.0.14",
"@oclif/color": "^1.0.2",
"@oclif/core": "^1",
"@oclif/plugin-help": "^5",
"@oclif/plugin-plugins": "^2.0.1",
"adm-zip": "^0.5.9",
"axios": "^0.25.0",
"dotenv": "^14.3.0",
"form-data": "^4.0.0",
"googleapis": "^95.0.0",
"hosted-git-info": "^6.1.1",
"ignore": "^5.2.0",
"inquirer": "^8.2.0",
"js-yaml": "^4.1.0",
"jwt-decode": "^3.1.2",
"open": "^8.4.0",
"server-destroy": "^1.0.1",
"sha256-file": "^1.0.0",
"simple-git": "^3.14.1",
"slugify": "^1.6.5",
"trim-newlines": "3.0.1",
"uuid": "^8.3.2",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@oclif/test": "^2",
"@types/adm-zip": "^0.4.34",
"@types/chai": "^4",
"@types/dotenv": "^8.2.0",
"@types/hosted-git-info": "^3.0.2",
"@types/inquirer": "^8.2.0",
"@types/jest": "^29.5.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^16.9.4",
"@types/sha256-file": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.59.8",
"chai": "^4",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.4.6",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-testing-library": "^5.5.1",
"eslint-plugin-unused-imports": "^2.0.0",
"globby": "^11",
"husky": "^8.0.0",
"is-ci": "^3.0.1",
"jest": "^29.5.0",
"jest-html-reporters": "^3.1.4",
"oclif": "^2.0.0-main.10",
"prettier": "^2.7.1",
"shx": "^0.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"dirname": "oex",
"engines": {
"node": ">=12.0.0"
},
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://kyso.io",
"keywords": [
"kyso",
"cli"
],
"license": "MIT",
"main": "dist/index.js",
"oclif": {
"bin": "kyso",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"topicSeparator": " ",
"topics": {
"hello": {
"description": "Say hello to the world and others"
}
}
},
"repository": {
"type": "git",
"url": "https://gitlab.kyso.io/kyso-io/kyso-cli.git"
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts --config .eslintrc --fix",
"packtgz": "oclif pack tarballs",
"packwin": "oclif pack win",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"prepack": "npm run build && oclif manifest",
"test": "jest --coverage",
"change-version": "npm version --allow-same --no-commit-hooks --no-git-tag-version",
"check-types": "tsc --noEmit --pretty",
"prepare": "is-ci || husky install",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\""
},
"types": "dist/index.d.ts"
}