-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
76 lines (76 loc) · 2.03 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
{
"name": "contentstack-cli-tsgen",
"description": "Generate TypeScript typings from a Stack.",
"version": "3.0.1",
"author": "Michael Davis",
"bugs": "https://github.com/Contentstack-Solutions/contentstack-cli-tsgen/issues",
"dependencies": {
"@contentstack/cli-command": "^1.3.1",
"@contentstack/cli-utilities": "^1.7.3",
"@gql2ts/from-schema": "^2.0.0-4",
"async": "^3.2.6",
"fancy-test": "^3.0.16",
"graphql": "^14.7.0",
"lodash": "^4.17.21",
"prettier": "^2.8.8",
"tslib": "^1.14.1"
},
"devDependencies": {
"@oclif/plugin-help": "^3.3.1",
"@oclif/test": "^4.0.9",
"@types/async": "^3.2.24",
"@types/chai": "^4.3.20",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.17.9",
"@types/mocha": "^10.0.8",
"@types/node": "^10.17.60",
"chai": "^5.1.1",
"eslint": "^5.16.0",
"eslint-config-oclif": "^3.1.2",
"eslint-config-oclif-typescript": "^0.2.0",
"globby": "^10.0.2",
"jest": "^26.6.3",
"mocha": "^10.7.3",
"oclif": "^3.17.2",
"ts-jest": "^26.5.6",
"ts-node": "^10.9.2",
"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",
"prepack": "rm -rf lib && tsc -b && oclif manifest && oclif readme",
"test": "jest --testPathPattern=tests",
"version": "oclif readme && git add README.md",
"test:unit": "mocha --forbid-only -r ts-node/register \"test/**/*.test.ts\""
},
"csdxConfig": {
"shortCommandName": {
"tsgen": "TSGEN"
}
}
}