-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 2.18 KB
/
package.json
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
{
"name": "contentstack-cli-content-type",
"description": "Retrieve information about Content Types in a Stack.",
"version": "1.2.3",
"author": "Contentstack Developer",
"bugs": "https://github.com/contentstack/contentstack-cli-content-type/issues",
"dependencies": {
"@contentstack/cli-command": "^1.3.2",
"@contentstack/cli-utilities": "^1.8.0",
"@types/diff2html": "^3.0.3",
"@types/git-diff": "^2.0.7",
"@types/hogan.js": "^3.0.5",
"@types/table": "^6.3.2",
"@types/tmp": "^0.2.6",
"axios": "^1.7.9",
"cli-ux": "^6.0.9",
"diff2html": "^3.4.51",
"git-diff": "^2.0.6",
"moment": "^2.30.1",
"node-graphviz": "^0.1.1",
"table": "^6.9.0",
"tmp": "^0.2.3",
"tslib": "^2.8.1",
"url-join": "^5.0.0"
},
"devDependencies": {
"@oclif/plugin-help": "^6.2.22",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.10",
"eslint": "^9.18.0",
"eslint-config-oclif": "^3.1.2",
"eslint-config-oclif-typescript": "^0.2.0",
"globby": "^10.0.2",
"jest": "^29.7.0",
"oclif": "^3.17.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/contentstack/contentstack-cli-content-type",
"keywords": [
"contentstack",
"cli",
"plugin"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands/",
"bin": "csdx",
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "contentstack/contentstack-cli-content-type",
"scripts": {
"test": "jest",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf lib && tsc -b && oclif manifest && oclif readme",
"version": "oclif readme && git add README.md"
},
"csdxConfig": {
"shortCommandName": {
"content-type:audit": "CTAUDIT",
"content-type:compare": "CTCMP",
"content-type:compare-remote": "CTCMP-R",
"content-type:details": "CTDET",
"content-type:diagram": "CTDIAG",
"content-type:list": "CTLS"
}
}
}