-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.43 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
{
"name": "sourcebit-source-contentful",
"version": "0.6.8",
"description": "A Contentful plugin for Sourcebit",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"format": "prettier --write \"./**/*.{js,jsx,md,html}\"",
"version-patch": "npm version patch -m \"bumped version to v%s\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/stackbithq/sourcebit-source-contentful.git"
},
"keywords": [
"headless",
"headless-cms",
"jamstack",
"ssg"
],
"author": "Stackbit",
"license": "MIT",
"bugs": {
"url": "https://github.com/stackbithq/sourcebit-source-contentful/issues"
},
"homepage": "https://github.com/stackbithq/sourcebit-source-contentful#readme",
"dependencies": {
"@contentful/rich-text-html-renderer": "^14.1.2",
"contentful": "^8.3.5",
"contentful-management": "^7.20.1"
},
"devDependencies": {
"@stackbit/prettier-config": "^1.0.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,md,html}": [
"npm run format",
"git add"
]
},
"prettier": "@stackbit/prettier-config"
}