-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2 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
{
"name": "@contentstack/cli-cm-seed",
"description": "create a Stack from existing content types, entries, assets, etc.",
"version": "1.10.2",
"author": "Contentstack",
"bugs": "https://github.com/contentstack/cli/issues",
"dependencies": {
"@contentstack/cli-cm-import": "~1.20.0",
"@contentstack/cli-command": "~1.3.3",
"@contentstack/cli-utilities": "~1.8.4",
"@contentstack/management": "~1.18.4",
"inquirer": "8.2.6",
"mkdirp": "^1.0.4",
"tar": "^6.2.1",
"tmp": "^0.2.3"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/jest": "^26.0.24",
"@types/mkdirp": "^1.0.2",
"@types/node": "^14.18.63",
"@types/tar": "^6.1.13",
"@types/tmp": "^0.2.6",
"axios": "^1.8.2",
"eslint": "^8.57.1",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^3.1.14",
"jest": "^29.7.0",
"oclif": "^3.17.2",
"ts-jest": "^29.2.6",
"ts-node": "^8.10.2",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"types": "./types/index.d.ts",
"homepage": "https://github.com/contentstack/cli",
"keywords": [
"contentstack",
"cli",
"plugin"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"bin": "csdx",
"repositoryPrefix": "<%- repo %>/blob/main/packages/contentstack-seed/<%- commandPath %>"
},
"csdxConfig": {
"expiredCommands": {
"cm:seed": "csdx cm:stacks:seed"
},
"shortCommandName": {
"cm:stacks:seed": "SEED",
"cm:seed": "O-SEED"
}
},
"repository": "contentstack/cli",
"scripts": {
"test": "jest",
"pack": "npm pack --dry-run",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf lib && tsc -b && oclif manifest && oclif readme",
"version": "oclif readme && git add README.md",
"clean": "rm -rf ./node_modules tsconfig.build.tsbuildinfo"
}
}