-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·135 lines (135 loc) · 3.82 KB
/
package.json
File metadata and controls
executable file
·135 lines (135 loc) · 3.82 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
129
130
131
132
133
134
135
{
"name": "@contentstack/cli-launch",
"version": "1.9.6",
"description": "Launch related operations",
"author": "Contentstack CLI",
"bin": {
"launch": "./bin/run.js"
},
"homepage": "https://github.com/contentstack/launch-cli",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/contentstack/launch-cli.git"
},
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@apollo/client": "^3.14.0",
"@contentstack/cli-command": "^1.7.2",
"@contentstack/cli-utilities": "^1.17.0",
"@oclif/core": "^4.2.7",
"@oclif/plugin-help": "^6.2.25",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/express": "^4.17.21",
"@types/express-serve-static-core": "^4.17.34",
"adm-zip": "^0.5.16",
"chalk": "^4.1.2",
"cross-fetch": "^4.1.0",
"dotenv": "^16.4.7",
"express": "^4.22.0",
"form-data": "4.0.4",
"graphql": "^16.9.0",
"ini": "^3.0.1",
"lodash": "^4.17.23",
"open": "^8.4.2",
"rollup": "^4.34.6",
"winston": "^3.17.0"
},
"devDependencies": {
"@oclif/test": "^4.1.3",
"@types/adm-zip": "^0.5.7",
"@types/chai": "^4.3.20",
"@types/ini": "^1.3.34",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/mocha": "^10.0.10",
"@types/node": "^16.18.121",
"@types/sinon": "^17.0.3",
"chai": "^4.5.0",
"eslint": "^9.24.0",
"eslint-config-oclif": "^6.0.42",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.5.0",
"mocha": "^11.0.1",
"nyc": "^17.1.0",
"oclif": "^4.17.30",
"shx": "^0.3.4",
"sinon": "^19.0.2",
"ts-jest": "^29.3.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
},
"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 'src/**/*.{js,ts}'",
"lint-staged": "lint-staged",
"postpack": "shx rm -f oclif.manifest.json",
"prepack-bkp": "npm run build && oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\" && npm run test:jest",
"version": "oclif readme && git add README.md",
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./dist tsconfig.build.tsbuildinfo",
"compile": "tsc -b tsconfig.json && npm run patch-load-data-url",
"patch-load-data-url": "node scripts/patch-load-data-url-file.js",
"prepack": "npm run build && oclif manifest && oclif readme",
"test:unit": "mocha --forbid-only \"test/unit/**/*.test.ts\" && npm run test:jest",
"test:unit:report": "nyc --extension .ts mocha --forbid-only \"test/unit/**/*.test.ts\" && npm run test:jest:coverage",
"test:jest": "jest",
"test:jest:coverage": "jest --coverage",
"prepare": "husky"
},
"overrides": {
"axios": "~1.12.0",
"form-data": "4.0.4"
},
"engines": {
"node": ">=14.0.0"
},
"bugs": "https://github.com/contentstack/launch-cli/issues",
"keywords": [
"oclif"
],
"types": "dist/index.d.ts",
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
},
"csdxConfig": {
"shortCommandName": {
"launch": "LNCH",
"launch:logs": "LNCH-LGS",
"launch:open": "LNCH-OPN",
"launch:functions": "LNCH-FN",
"launch:environments": "LNCH-ENV",
"launch:deployments": "LNCH-DPLMNT"
}
}
}