forked from contentful-userland/cf-content-types-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.56 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
96
97
98
{
"name": "@xeroxinteractive/cf-content-types-generator",
"version": "0.0.0",
"description": "Contentful Content Types (TS Definitions) Generator",
"author": "Marco Link<marco.link@contentful.com>",
"license": "MIT",
"bin": {
"cf-content-types-generator": "./bin/run"
},
"main": "lib/index.js",
"bugs": "https://github.com/contentful-labs/cf-content-types-generator/issues",
"engines": {
"node": ">=12.0.0"
},
"oclif": {
"bin": "cf-content-types-generator"
},
"repository": "xeroxinteractive/cf-content-types-generator",
"files": [
"/bin",
"/lib"
],
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/errors": "latest",
"@oclif/plugin-help": "^3",
"cli-ux": "^5.5.1",
"contentful": "^9.1.28",
"contentful-export": "^7.16.0",
"fs-extra": "^9.1.0",
"lodash": "^4.17.15",
"ts-morph": "9.1.0",
"ts-node": "^9.0.0",
"tslib": "^2"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1.2.5",
"@semantic-release/changelog": "^5.0.1",
"@types/fs-extra": "^9.0.1",
"@types/lodash": "^4.14.155",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"eslint": "^8.14.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.2",
"eslint-plugin-unicorn": "^42.0.0",
"jest-fixtures": "^0.6.0",
"semantic-release": "^19.0.2",
"strip-indent": "^3.0.0",
"typescript": "4.2.2"
},
"scripts": {
"posttest": "eslint . --ext .ts --config .eslintrc --fix",
"prepack": "rm -rf lib && tsc -b && oclif-dev readme",
"build": "./node_modules/.bin/tsc",
"version": "oclif-dev readme && git add README.md",
"presemantic-release": "yarn run build",
"semantic-release": "semantic-release"
},
"types": "lib/index.d.ts",
"release": {
"branches": [
"master",
{
"name": "experimental",
"channel": "experimental",
"prerelease": true
}
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"type": "build",
"scope": "deps",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/changelog",
"@semantic-release/github"
]
},
"resolutions": {
"ansi-regex": ">=3.0.1 <6.0.0",
"minimist": ">=1.2.6",
"path-parse": ">=1.0.7"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/xeroxinteractive"
}
}