-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
95 lines (95 loc) · 2.87 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
{
"name": "@contentstack/cli-cm-import",
"description": "Contentstack CLI plugin to import content into stack",
"version": "1.20.0",
"author": "Contentstack",
"bugs": "https://github.com/contentstack/cli/issues",
"dependencies": {
"@contentstack/cli-audit": "~1.9.0",
"@contentstack/cli-command": "~1.3.3",
"@contentstack/cli-utilities": "~1.8.4",
"@contentstack/management": "~1.18.4",
"@contentstack/cli-variants": "~1.1.5",
"@oclif/core": "^3.27.0",
"big-json": "^3.2.0",
"bluebird": "^3.7.2",
"chalk": "^4.1.2",
"debug": "^4.4.0",
"fs-extra": "^11.2.0",
"lodash": "^4.17.21",
"marked": "^4.3.0",
"merge": "^2.1.1",
"mkdirp": "^1.0.4",
"promise-limit": "^2.7.0",
"uuid": "^9.0.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@oclif/test": "^4.1.6",
"@types/big-json": "^3.2.5",
"@types/bluebird": "^3.5.42",
"@types/fs-extra": "^11.0.4",
"@types/mkdirp": "^1.0.2",
"@types/mocha": "^8.2.3",
"@types/node": "^14.18.63",
"@types/tar": "^6.1.13",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"eslint": "^8.57.1",
"eslint-config-oclif": "^4.0.0",
"mocha": "^10.8.2",
"nyc": "^15.1.0",
"oclif": "^3.17.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": "mocha --forbid-only \"test/run.test.js\" --integration-test --timeout 60000",
"test:unit": "mocha --forbid-only \"test/unit/*.test.ts\""
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"/bin",
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/contentstack/cli",
"keywords": [
"contentstack",
"cli",
"plugin"
],
"main": "./lib/commands/cm/stacks/import.js",
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"bin": "csdx",
"repositoryPrefix": "<%- repo %>/blob/main/packages/contentstack-import/<%- commandPath %>"
},
"csdxConfig": {
"expiredCommands": {
"cm:import": "csdx cm:stacks:import"
},
"shortCommandName": {
"cm:stacks:import": "IMPRT",
"cm:import": "O-IMPRT"
}
},
"repository": "https://github.com/contentstack/cli"
}