-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·108 lines (108 loc) · 3.03 KB
/
package.json
File metadata and controls
executable file
·108 lines (108 loc) · 3.03 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
{
"name": "@contentstack/cli-launch",
"version": "1.2.2",
"description": "Launch related operations",
"author": "Contentstack CLI",
"bin": {
"launch": "./bin/run.js"
},
"homepage": "https://github.com/contentstack/cli",
"license": "MIT",
"main": "dist/index.js",
"repository": "contentstack/cli",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@apollo/client": "^3.7.9",
"@contentstack/cli-command": "~1.3.0",
"@contentstack/cli-utilities": "~1.7.2",
"@oclif/core": "^3.26.5",
"@oclif/plugin-help": "^5",
"@oclif/plugin-plugins": "^5.0.0",
"@types/express": "^4.17.17",
"@types/express-serve-static-core": "^4.17.34",
"adm-zip": "^0.5.10",
"chalk": "^4.1.2",
"cross-fetch": "^3.1.5",
"dotenv": "^16.0.3",
"esm": "^3.2.25",
"express": "^4.21.0",
"form-data": "^4.0.0",
"graphql": "^16.8.1",
"ini": "^3.0.1",
"lodash": "^4.17.21",
"open": "^8.4.2",
"winston": "^3.8.2"
},
"devDependencies": {
"@oclif/test": "^2.5.6",
"@types/adm-zip": "^0.5.0",
"@types/chai": "^4",
"@types/esm": "^3.2.0",
"@types/ini": "^1.3.31",
"@types/lodash": "^4.14.195",
"@types/node": "^16.18.12",
"chai": "^4",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^3.0.8",
"oclif": "^3.11.3",
"shx": "^0.3.3",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"oclif": {
"bin": "csdx",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"topicSeparator": ":",
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
],
"repositoryPrefix": "<%- repo %>/blob/main/packages/contentstack-launch/<%- commandPath %>"
},
"scripts": {
"build-bkp": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts --config .eslintrc",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"prepack-bkp": "npm run build && oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md",
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./dist ./node_modules tsconfig.build.tsbuildinfo",
"compile": "tsc -b tsconfig.json",
"prepack": "pnpm compile && oclif manifest && oclif readme",
"test:unit": "mocha --forbid-only \"test/unit/**/*.test.ts\"",
"test:unit:report": "nyc --extension .ts mocha --forbid-only \"test/unit/**/*.test.ts\""
},
"engines": {
"node": ">=14.0.0"
},
"bugs": "https://github.com/contentstack/launch-cli/issues",
"keywords": [
"oclif"
],
"types": "dist/index.d.ts",
"csdxConfig": {
"shortCommandName": {
"launch": "LNCH",
"launch:logs": "LNCH-LGS",
"launch:open": "LNCH-OPN",
"launch:functions": "LNCH-FN",
"launch:environments": "LNCH-ENV",
"launch:deployments": "LNCH-DPLMNT"
}
}
}