-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.79 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
{
"name": "@havenengineering/migrate-contentful",
"version": "1.2.0",
"description": "Migration tooling for Contentful spaces",
"bin": {
"migrate-contentful": "dist/migrate.js"
},
"files": [
"dist/"
],
"scripts": {
"build": "npm run clean && tsc",
"postbuild": "chmod +x dist/migrate.js && cp src/template.txt dist/template.txt",
"clean": "rimraf dist",
"test": "echo no tests",
"lint": "eslint . --ext .ts,.tsx",
"prettier": "prettier --write '**/*.ts'",
"check-format": "prettier --check '**/*.ts'",
"prepublishOnly": "npm run lint && npm test && npm run build",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/HavenEngineering/migrate-contentful.git"
},
"keywords": [
"migrate",
"contentful",
"space",
"migration",
"content"
],
"author": "HavenEngineering",
"license": "MIT",
"bugs": {
"url": "https://github.com/HavenEngineering/migrate-contentful/issues"
},
"homepage": "https://github.com/HavenEngineering/migrate-contentful#readme",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.28.4",
"contentful-migration": "^4.5.8",
"eslint": "^7.31.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.0",
"jest": "^27.0.6",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"dependencies": {
"dotenv": "^10.0.0",
"ts-node": "^10.4.0",
"umzug": "^3.0.0-beta.16",
"umzug-contentful": "^1.1.3"
},
"peerDependencies": {
"contentful-migration": ">=4.5.8"
}
}