-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
126 lines (126 loc) · 3.22 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "cf-migrations",
"version": "0.0.0-semantically-released",
"description": "A tool to manage Contentful migrations",
"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": "ttsc --project tsconfig.lib.json",
"generate:apidocs": "bash scripts/generate-api-docs.sh",
"dev": "ttsc --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": "^19.2.0",
"@commitlint/config-conventional": "^19.0.3",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.0",
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.0.0",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.168",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"cz-conventional-changelog": "3.3.0",
"dayjs": "^1.10.4",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.1.2",
"eslint-plugin-import": "^2.25.2",
"husky": "^9.0.6",
"jest": "^27.2.5",
"prettier": "^3.0.0",
"semantic-release": "^24.0.0",
"timekeeper": "^2.2.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.3.0",
"tsconfig-paths": "^4.0.0",
"ttypescript": "^1.5.12",
"typedoc": "^0.26.3",
"typedoc-plugin-markdown": "^4.0.1",
"typescript": "^4.2.4",
"typescript-transform-paths": "^3.0.0"
},
"dependencies": {
"chalk": "4.1.2",
"change-case": "^5.0.2",
"contentful-management": "^11.2.0",
"contentful-migration": "^4.5.0",
"dotenv": "^16.0.0",
"fast-glob": "^3.2.7",
"fs-extra": "^11.1.0",
"lodash": "^4.17.21",
"yargs": "^17.0.1"
},
"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"
}
}
}