-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.62 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
{
"name": "test_rk102_f1234",
"description": "Generate TypeScript typings from a Stack.",
"version": "2.1.8",
"author": "Michael Davis",
"bugs": "https://github.com/Contentstack-Solutions/contentstack-cli-tsgen/issues",
"dependencies": {
"@contentstack/cli-command": "^1.2.9",
"@contentstack/cli-utilities": "^1.4.5",
"lodash": "^4.17.20",
"prettier": "^2.0.5",
"tslib": "^1.13.0"
},
"devDependencies": {
"@oclif/plugin-help": "^3.2.0",
"@types/async": "^3.2.18",
"@types/jest": "^26.0.14",
"@types/lodash": "^4.14.162",
"@types/node": "^10.17.28",
"async": "^3.2.4",
"eslint": "^5.16.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.1.0",
"globby": "^10.0.2",
"jest": "^26.5.3",
"oclif": "^3.7.0",
"ts-jest": "^26.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"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",
"version": "oclif readme && git add README.md"
}
}