-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
102 lines (102 loc) · 3.14 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@contentstack/cli-cm-export",
"description": "Contentstack CLI plugin to export content from stack",
"version": "1.14.1",
"author": "Contentstack",
"bugs": "https://github.com/contentstack/cli/issues",
"dependencies": {
"@contentstack/cli-command": "~1.3.2",
"@contentstack/cli-variants": "~1.1.4",
"@contentstack/cli-utilities": "~1.8.0",
"@oclif/core": "^3.27.0",
"async": "^3.2.6",
"big-json": "^3.2.0",
"bluebird": "^3.7.2",
"chalk": "^4.1.2",
"is-valid-path": "^0.1.1",
"lodash": "^4.17.21",
"merge": "^2.1.1",
"mkdirp": "^1.0.4",
"path": "^0.12.7",
"progress-stream": "^2.0.0",
"promise-limit": "^2.7.0",
"proxyquire": "^2.1.3",
"tslib": "^2.8.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@contentstack/cli-auth": "~1.3.22",
"@contentstack/cli-config": "~1.9.0",
"@contentstack/cli-dev-dependencies": "~1.2.4",
"@oclif/plugin-help": "^5.2.20",
"@oclif/test": "^4.1.3",
"@types/big-json": "^3.2.5",
"@types/mkdirp": "^1.0.2",
"@types/progress-stream": "^2.0.5",
"assert": "^2.1.0",
"chai": "^4.5.0",
"dotenv": "^16.4.7",
"dotenv-expand": "^9.0.0",
"eslint": "^8.57.1",
"eslint-config-oclif": "^4.0.0",
"globby": "^10.0.2",
"mocha": "10.8.2",
"nyc": "^15.1.0",
"oclif": "^3.17.2",
"sinon": "^19.0.2",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./lib ./node_modules tsconfig.build.tsbuildinfo",
"compile": "tsc -b tsconfig.json",
"postpack": "rm -f oclif.manifest.json",
"prepack": "pnpm compile && oclif manifest && oclif readme",
"version": "oclif readme && git add README.md",
"test:report": "tsc -p test && nyc --reporter=lcov --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"pretest": "tsc -p test",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"posttest": "npm run lint",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix",
"test:integration": "INTEGRATION_TEST=true mocha --config ./test/.mocharc.js --forbid-only \"test/run.test.js\"",
"test:integration:report": "INTEGRATION_TEST=true nyc --extension .js mocha --forbid-only \"test/run.test.js\"",
"test:unit": "mocha --forbid-only \"test/unit/*.test.ts\""
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/contentstack/cli",
"keywords": [
"contentstack",
"cli",
"plugin"
],
"license": "MIT",
"main": "./lib/commands/cm/stacks/export.js",
"oclif": {
"commands": "./lib/commands",
"bin": "csdx",
"devPlugins": [
"@oclif/plugin-help"
],
"repositoryPrefix": "<%- repo %>/blob/main/packages/contentstack-export/<%- commandPath %>"
},
"csdxConfig": {
"expiredCommands": {
"cm:export": "csdx cm:stacks:export"
},
"shortCommandName": {
"cm:stacks:export": "EXPRT",
"cm:export": "O-EXPRT"
}
},
"repository": "https://github.com/contentstack/cli"
}