-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.08 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.08 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
{
"name": "@contentstack/apps-cli",
"version": "1.6.4",
"description": "App ClI",
"author": "Contentstack CLI",
"homepage": "https://github.com/contentstack/contentstack-apps-cli",
"license": "MIT",
"main": "./lib/index.js",
"bin": {
"app": "bin/run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/contentstack/apps-cli.git"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@apollo/client": "^3.14.0",
"@contentstack/cli-command": "^1.7.2",
"@contentstack/cli-launch": "^1.9.6",
"@contentstack/cli-utilities": "^1.17.1",
"adm-zip": "^0.5.16",
"chalk": "^4.1.2",
"lodash": "^4.17.23",
"shelljs": "^0.10.0",
"tmp": "^0.2.5",
"winston": "^3.19.0"
},
"devDependencies": {
"@oclif/test": "^4.1.16",
"@types/adm-zip": "^0.5.7",
"@types/chai": "^4.3.20",
"@types/lodash": "^4.17.23",
"@types/mocha": "^10.0.10",
"@types/node": "^20.19.33",
"@types/shelljs": "^0.10.0",
"@types/tmp": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"axios": "^1.13.5",
"chai": "^4.5.0",
"dotenv": "^16.6.1",
"eslint": "^8.57.1",
"eslint-config-oclif": "^6.0.137",
"eslint-config-oclif-typescript": "^3.1.14",
"fancy-test": "3.0.16",
"mocha": "^10.8.2",
"nyc": "^15.1.0",
"oclif": "^4.22.77",
"shx": "^0.4.0",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
},
"oclif": {
"bin": "csdx",
"dirname": "apps-cli",
"commands": "./lib/commands",
"plugins": [],
"topicSeparator": ":",
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
],
"topics": {
"app": {
"description": "Perform developer-hub app related activities"
}
}
},
"scripts": {
"build": "npm run clean && shx rm -rf lib && tsc -b",
"lint": "eslint . --ext .ts --config .eslintrc",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"prepack": "npm run build && oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md",
"clean": "rm -rf ./lib tsconfig.tsbuildinfo oclif.manifest.json",
"test:unit:report": "nyc --extension .ts mocha --forbid-only \"test/unit/**/*.test.ts\"",
"test:unit:report:json": "mocha --reporter json --reporter-options output=report.json --forbid-only \"test/unit/**/*.test.ts\" && nyc --reporter=clover --extension .ts mocha --forbid-only \"test/unit/**/*.test.ts\""
},
"engines": {
"node": ">=16"
},
"bugs": "https://github.com/contentstack/contentstack-apps-cli/issues",
"keywords": [
"oclif"
],
"types": "./lib/index.d.ts",
"csdxConfig": {
"shortCommandName": {
"app:get": "APGT",
"app:create": "APCRT",
"app:update": "APUPT",
"app:delete": "APDLT",
"app:install": "API",
"app:uninstall": "APUI",
"app:reinstall": "APRI",
"app:deploy": "APDP"
}
}
}