-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.72 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.72 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
{
"name": "@contentstack/cli-migration",
"version": "1.7.3",
"author": "@contentstack",
"bugs": "https://github.com/contentstack/cli/issues",
"dependencies": {
"@contentstack/cli-command": "~1.5.0",
"@contentstack/cli-utilities": "~1.12.0",
"async": "^3.2.6",
"callsites": "^3.1.0",
"cardinal": "^2.1.1",
"chalk": "^4.1.2",
"concat-stream": "^2.0.0",
"listr": "^0.14.3",
"winston": "^3.17.0"
},
"devDependencies": {
"@oclif/test": "^4.1.13",
"chai": "^4.5.0",
"eslint": "^8.57.1",
"eslint-config-oclif": "^6.0.62",
"jsdoc-to-markdown": "^8.0.3",
"nock": "^13.5.6",
"nyc": "^15.1.0",
"oclif": "^4.17.46"
},
"engines": {
"node": ">=8.3.0"
},
"files": [
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src",
"/yarn.lock"
],
"homepage": "https://github.com/contentstack/cli",
"keywords": [
"oclif-plugin"
],
"license": "MIT",
"oclif": {
"commands": "./src/commands",
"bin": "csdx",
"repositoryPrefix": "<%- repo %>/blob/main/packages/contentstack-migration/<%- commandPath %>"
},
"repository": "contentstack/cli",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"generate-api-ref-md-doc": "nyc jsdoc2md ./src/modules/* > ./docs/api-reference.md",
"prepack": "oclif manifest && oclif readme && pnpm generate-api-ref-md-doc",
"test": "nyc mocha \"test/**/*.test.js\"",
"version": "oclif readme && git add README.md",
"clean": "rm -rf ./node_modules tsconfig.build.tsbuildinfo"
},
"csdxConfig": {
"expiredCommands": {
"cm:migration": "csdx cm:stacks:migration"
},
"shortCommandName": {
"cm:stacks:migration": "MGRTN",
"cm:migration": "O-MGRTN"
}
}
}