-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.57 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": "contentful-migration-tool",
"version": "1.3.0",
"description": "Run Contentful migrations easier.",
"main": "dist/src/migration.js",
"types": "dist/src/migration.d.ts",
"bin": "./bin/index.js",
"files": [
"/bin",
"/dist"
],
"scripts": {
"lint": "tsc --noEmit",
"pretest:integration": "pnpm lint",
"test:integration": "jest",
"build": "tsc",
"prepublishOnly": "pnpm build",
"dep:major": "pnpm dlx npm-check-updates --packageFile '**/package.json' -u",
"dep:minor": "pnpm dep:major -t minor",
"ls-engines": "pnpm dlx ls-engines"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcomontalbano/contentful-migration-tool.git"
},
"keywords": [
"docker",
"cli",
"contentful",
"migration",
"migrate",
"contentful-migration"
],
"author": "Marco Montalbano <me@marcomontalbano.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcomontalbano/contentful-migration-tool/issues"
},
"homepage": "https://github.com/marcomontalbano/contentful-migration-tool#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"@types/yargs": "^17.0.32",
"chalk": "^5.3.0",
"contentful-management": "^11.25.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "20.12.7",
"contentful-migration": "^4.20.2",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tsx": "^4.7.3",
"typescript": "^5.4.5"
},
"peerDependencies": {
"contentful-migration": ">=4"
}
}