This repository was archived by the owner on Apr 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.28 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.28 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
{
"name": "cortex-cli",
"version": "2.4.1",
"description": "Command line tool for CognitiveScale Cortex.",
"main": "./bin/cortex.js",
"type": "module",
"types": "./client/index.d.ts",
"scripts": {
"package-binary": "caxa --input . --output 'dist/cortex' '{{caxa}}/node_modules/.bin/node' '{{caxa}}/bin/cortex.js' --exclude '*' '.*' '!bin' '!src' '!client' '!package.json'",
"package-binary-windows": "caxa --input . --output \"dist/cortex.exe\" \"{{caxa}}/node_modules/.bin/node\" \"{{caxa}}/bin/cortex.js\" --exclude \"*\" \".*\" \"!bin\" \"!src\" \"!client\" \"!package.json\"",
"prepare": "is-ci || husky install",
"prepack": "cp package-lock.json npm-shrinkwrap.json",
"postpack": "rm npm-shrinkwrap.json",
"pretest": "eslint bin/**/*.js src/**/*.js test/**/*.js && audit-ci -h",
"test": "cross-env NODE_ENV=test c8 mocha",
"test:workspaces": "cross-env NODE_ENV=test mocha --grep='Workspaces'",
"clean": "rm -rf dist/ coverage/ .nyc_output/ node_modules/ cortex-cli.tgz cortex-cli-docs.md version.txt",
"scan": "sonar-scanner"
},
"files": [
"bin/*",
"src/*",
"client/*",
"README.md",
"npm-shrinkwrap.json",
"LICENSE"
],
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/CognitiveScale/cortex-cli.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"cognitivescale",
"cortex",
"ai"
],
"bin": {
"cortex": "./bin/cortex.js"
},
"author": "CognitiveScale",
"license": "Apache-2.0",
"homepage": "https://github.com/CognitiveScale/cortex-cli",
"dependencies": {
"@supercharge/promise-pool": "3.1.0",
"boolean": "3.2.0",
"chalk": "5.3.0",
"cli-progress": "3.12.0",
"cli-table3": "0.6.3",
"commander": "11.1.0",
"dayjs": "1.11.10",
"debug": "4.3.4",
"es-main": "1.3.0",
"form-data": "4.0.0",
"get-stream": "8.0.1",
"gh-got": "10.0.0",
"glob": "10.3.10",
"got": "13.0.0",
"graphql": "16.8.1",
"graphql-request": "6.1.0",
"inquirer": "9.2.16",
"is-installed-globally": "1.0.0",
"istextorbinary": "6.0.0",
"jmespath": "0.16.0",
"joi": "17.11.0",
"jose": "5.2.3",
"js-yaml": "4.1.0",
"keytar": "7.9.0",
"listr2": "6.4.2",
"lodash": "4.17.21",
"minimatch": "9.0.3",
"npm-registry-fetch": "16.1.0",
"open": "10.1.0",
"prompts": "2.4.2",
"qs": "6.12.0",
"semver": "7.5.4",
"treeify": "1.1.0",
"url-join": "5.0.0",
"url-parse": "1.5.10",
"uuid": "9.0.1",
"which": "4.0.0",
"yauzl": "3.1.2"
},
"devDependencies": {
"audit-ci": "6.6.1",
"c8": "8.0.1",
"caxa": "3.0.1",
"chai": "4.3.10",
"chai-as-promised": "7.1.1",
"cross-env": "7.0.3",
"esbuild": "0.19.11",
"eslint": "8.56.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.29.1",
"husky": "8.0.3",
"is-ci": "3.0.1",
"mocha": "10.2.0",
"mocked-env": "1.3.5",
"nock": "13.4.0",
"pkg": "5.8.1",
"sinon": "17.0.1",
"sonarqube-scanner": "3.3.0"
},
"c8": {
"check-coverage": true,
"statements": 40,
"branches": 71,
"functions": 17,
"lines": 40,
"include": [
"bin",
"src"
],
"reporter": [
"text",
"lcov"
]
}
}