-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
104 lines (104 loc) · 2.8 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
99
100
101
102
103
104
{
"name": "cf-content-types-generator",
"version": "0.0.0",
"description": "Contentful Content Types (TS Definitions) Generator",
"author": "Marco Link<[email protected]>",
"license": "MIT",
"bin": {
"cf-content-types-generator": "./bin/run"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bugs": "https://github.com/contentful-userland/cf-content-types-generator/issues",
"engines": {
"node": ">=20.0.0"
},
"oclif": {
"default": ".",
"commands": "./lib/commands"
},
"repository": "contentful-userland/cf-content-types-generator",
"files": [
"/bin",
"/lib"
],
"dependencies": {
"@oclif/core": "^3.27.0",
"@oclif/plugin-help": "^6.2.8",
"contentful": "^10.14.1",
"contentful-export": "^7.19.147",
"contentful-management": "^11.31.6",
"fs-extra": "^11.2.0",
"lodash": "^4.17.21",
"ts-morph": "^23.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@types/cli-progress": "^3.11.5",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.4",
"@types/json-patch": "^0.0.33",
"@types/lodash": "^4.14.155",
"@types/node": "^20.16.1",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^2.0.1",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.4",
"jest": "^29.6.4",
"jest-fixtures": "^0.6.0",
"lint-staged": "^15.2.9",
"oclif": "^4.1.3",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.0.0",
"semantic-release": "^24.1.0",
"strip-indent": "^3.0.0",
"ts-jest": "29.2.5",
"ts-node": "^10.9.1",
"typescript": "^5.5.4"
},
"scripts": {
"posttest": "eslint . --ext .ts --config .eslintrc --fix",
"prepack": "rm -rf lib && tsc -b && oclif readme",
"lint": "eslint . --ext .ts --config .eslintrc",
"lint:fix": "yarn lint --fix",
"lint-staged": "lint-staged",
"prettier": "prettier .",
"prettier:fix": "yarn run prettier --write",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"build": "tsc",
"version": "oclif readme && git add README.md",
"presemantic-release": "yarn run build",
"semantic-release": "semantic-release"
},
"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"
]
}
}