-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.38 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
{
"name": "umzug-contentful",
"version": "1.1.5",
"description": "Umzug custom storage provider that stores migration data in Contentful",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"test": "jest",
"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+https://github.com/rouanw/umzug-contentful.git"
},
"keywords": [
"umzug",
"contentful",
"migration",
"migrate",
"sequelize"
],
"author": "rouanw",
"license": "MIT",
"bugs": {
"url": "https://github.com/rouanw/umzug-contentful/issues"
},
"homepage": "https://github.com/rouanw/umzug-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",
"eslint": "^7.31.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"dependencies": {
"contentful-management": "^7.31.0"
}
}