-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.07 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.07 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
{
"name": "@contentstack/cli-cm-migrate-rte",
"description": "Contentstack CLI plugin to migrate HTML RTE to JSON RTE",
"version": "2.0.0-beta.4",
"author": "contentstack",
"bugs": {
"url": "https://github.com/contentstack/cli-cm-migrate-rte/issues"
},
"dependencies": {
"@contentstack/cli-command": "2.0.0-beta.4",
"@contentstack/cli-utilities": "2.0.0-beta.4",
"@contentstack/json-rte-serializer": "~2.1.0",
"@oclif/core": "^4.3.0",
"@oclif/plugin-help": "^6.2.37",
"chalk": "^4.1.2",
"collapse-whitespace": "^1.1.7",
"jsdom": "^23.2.0",
"jsonschema": "^1.5.0",
"lodash": "^4.17.23",
"omit-deep-lodash": "^1.1.7"
},
"devDependencies": {
"@oclif/test": "^4.1.16",
"chai": "^4.5.0",
"eslint": "^8.57.1",
"eslint-config-oclif": "^6.0.148",
"fancy-test": "^2.0.42",
"mocha": "^10.8.2",
"nock": "^13.5.6",
"nyc": "^15.1.0",
"oclif": "^4.17.46",
"querystring": "^0.2.1",
"sinon": "^21.0.2",
"husky": "^9.1.7"
},
"engines": {
"node": ">=18.0.0"
},
"overrides": {
"tmp": "0.2.4"
},
"files": [
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/contentstack/cli-cm-migrate-rte#readme",
"keywords": [
"contentstack",
"cli",
"plugin",
"JSON RTE"
],
"license": "MIT",
"oclif": {
"commands": "./src/commands",
"bin": "csdx",
"repositoryPrefix": "<%- repo %>/blob/main/<%- commandPath %>"
},
"repository": {
"type": "git",
"url": "https://github.com/contentstack/cli-cm-migrate-rte.git"
},
"scripts": {
"prepare": "npx husky && chmod +x .husky/pre-commit",
"postpack": "rm -f oclif.manifest.json",
"prepack": "oclif manifest && oclif readme",
"test": "nyc --check-coverage=false mocha --require test/setup.js --forbid-only \"test/**/*.test.js\"",
"version": "oclif readme && git add README.md",
"clean": "rm -rf ./node_modules tsconfig.build.tsbuildinfo"
},
"csdxConfig": {
"shortCommandName": {
"cm:entries:migrate-html-rte": "MGRTRTE"
}
}
}