sourcebit-source-contentful
Version:
A Contentful plugin for Sourcebit
53 lines (52 loc) • 1.46 kB
JSON
{
"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"
}