-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.24 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.24 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "cf-migrations",
"version": "0.0.0-semantically-released",
"description": "A tool to manage Contentful migrations",
"engines": {
"node": ">=22.14.0"
},
"files": [
"bin",
"lib",
"dist"
],
"main": "dist",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/foobaragency/cf-migrations"
},
"bin": {
"cf-migrations": "bin/cf-migrations.js"
},
"author": "foobar Agency GmbH",
"license": "MIT",
"private": false,
"keywords": [
"contentful",
"migrations",
"management"
],
"scripts": {
"build": "tsc --project tsconfig.lib.json",
"generate:apidocs": "bash scripts/generate-api-docs.sh",
"dev": "tsc --project tsconfig.lib.json --watch",
"clean": "rm -rf dist",
"fix": "yarn lint:prettier --write && yarn lint --fix",
"prepack": "yarn clean && yarn test && yarn build",
"prepare": "husky install",
"cz": "git-cz",
"lint": "eslint --ext .ts --cache lib",
"lint:prettier": "prettier \"**/*.{js,ts,json,md,yml}\"",
"test": "jest",
"test:cov": "jest --coverage",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^20.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^9.0.0",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.14.168",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"cz-conventional-changelog": "3.3.0",
"dayjs": "^1.10.4",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"husky": "^9.0.6",
"jest": "^30.3.0",
"prettier": "^3.8.1",
"semantic-release": "^25.0.3",
"timekeeper": "^2.2.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.0.0",
"ttypescript": "^1.5.15",
"typedoc": "^0.28.18",
"typedoc-plugin-markdown": "^4.0.1",
"typescript": "^6.0.2",
"typescript-transform-paths": "^4.0.0"
},
"dependencies": {
"chalk": "4.1.2",
"contentful-management": "^12.1.0",
"contentful-migration": "^5.0.0",
"dotenv": "^17.3.1",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.4",
"lodash": "^4.17.21",
"yargs": "^18.0.0"
},
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/changelog",
{
"changelogFile": "docs/generated/CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"assets": [
"docs/generated/CHANGELOG.md"
]
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}