-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.87 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.87 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
{
"name": "@contentstack/cli-cm-clone",
"description": "Contentstack stack clone plugin",
"version": "1.14.0",
"author": "Contentstack",
"bugs": "https://github.com/rohitmishra209/cli-cm-clone/issues",
"dependencies": {
"@colors/colors": "^1.6.0",
"@contentstack/cli-cm-export": "~1.16.0",
"@contentstack/cli-cm-import": "~1.21.2",
"@contentstack/cli-command": "~1.5.0",
"@contentstack/cli-utilities": "~1.11.0",
"chalk": "^4.1.2",
"inquirer": "8.2.6",
"lodash": "^4.17.21",
"merge": "^2.1.1",
"ora": "^5.4.1",
"prompt": "^1.3.0",
"rimraf": "^5.0.10",
"winston": "^3.17.0"
},
"devDependencies": {
"@oclif/test": "^4.1.6",
"chai": "^4.5.0",
"eslint": "^8.57.1",
"eslint-config-oclif": "^6.0.15",
"mocha": "^10.8.2",
"nyc": "^15.1.0",
"oclif": "^4.17.30",
"sinon": "^19.0.2"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/rohitmishra209/cli-cm-clone",
"keywords": [
"contentstack",
"cli",
"plugin"
],
"license": "MIT",
"oclif": {
"commands": "./src/commands",
"bin": "csdx",
"repositoryPrefix": "<%- repo %>/blob/main/packages/contentstack-clone/<%- commandPath %>"
},
"repository": "https://github.com/contentstack/cli",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"prepack": "oclif manifest && oclif readme",
"test": "nyc --reporter=html mocha --forbid-only \"test/**/*.test.js\"",
"posttest": "eslint .",
"version": "oclif readme && git add README.md",
"clean": "rm -rf ./node_modules tsconfig.build.tsbuildinfo"
},
"csdxConfig": {
"expiredCommands": {
"cm:stack-clone": "csdx cm:stacks:clone"
},
"shortCommandName": {
"cm:stacks:clone": "CLN",
"cm:stack-clone": "O-CLN"
}
}
}