-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.69 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.69 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
{
"name": "contentstack-cli-tsgen",
"description": "Generate TypeScript typings from a Stack.",
"version": "3.2.0",
"author": "Michael Davis",
"bugs": "https://github.com/Contentstack-Solutions/contentstack-cli-tsgen/issues",
"dependencies": {
"@contentstack/cli-command": "^1.3.2",
"@contentstack/cli-utilities": "^1.8.0",
"@contentstack/types-generator": "^2.1.0",
"dotenv": "^16.4.7"
},
"devDependencies": {
"@oclif/plugin-help": "^3.3.1",
"@oclif/test": "^4.1.9",
"@types/jest": "^29.5.14",
"@types/node": "^10.17.60",
"eslint": "^5.16.0",
"eslint-config-oclif": "^3.1.2",
"eslint-config-oclif-typescript": "^0.2.0",
"jest": "^26.6.3",
"oclif": "^3.17.2",
"ts-jest": "^26.5.6",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/Contentstack-Solutions/contentstack-cli-tsgen",
"keywords": [
"contentstack",
"cli",
"plugin",
"typescript"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"bin": "csdx",
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "Contentstack-Solutions/contentstack-cli-tsgen",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc --fix",
"prepack": "rm -rf lib && tsc -b && oclif manifest && oclif readme",
"test": "jest --testPathPattern=tests",
"version": "oclif readme && git add README.md",
"test:integration": "jest --testPathPattern=tests/integration"
},
"csdxConfig": {
"shortCommandName": {
"tsgen": "TSGEN"
}
}
}