datocms-plugin-bulk-editor
Version:
This plugin can be added to all kinds of field belonging to a non-singleton model. It allows you to apply the same field value to all records belonging to the same model by using the content manager API. Something like a 'it's never too late' default valu
114 lines (113 loc) • 3.37 kB
JSON
{
"name": "datocms-plugin-bulk-editor",
"homepage": "https://github.com/leanpanda-com/datocms-plugins/tree/master/bulk-editor",
"description": "This plugin can be added to all kinds of field belonging to a non-singleton model. It allows you to apply the same field value to all records belonging to the same model by using the content manager API. Something like a 'it's never too late' default value. Remember to refresh the page to see results!",
"main": "index.js",
"scripts": {
"start": "concurrently \"yarn dev\" \"yarn localtunnel\"",
"localtunnel": "lt -s datocms-plugin-bulk-editor --port 5000",
"dev": "NODE_ENV=development webpack-dev-server --port 5000",
"dist": "NODE_ENV=production webpack --progress",
"prepublishOnly": "rimraf lib dist && mkdir dist && npm run dist",
"addToProject": "yo datocms-plugin:add-to-project",
"lint:dev": "eslint -c .eslintrc-dev src",
"lint:prod": "eslint src",
"test": "jest"
},
"keywords": [
"datocms",
"datocms-plugin",
"field-addon",
"boolean-field",
"date-field",
"date-time-field",
"float-field",
"integer-field",
"string-field",
"text-field",
"json-field",
"color-field",
"bulk-editor",
"default-value"
],
"files": [
"dist",
"docs"
],
"author": "Lean Panda <info@leanpanda.com>",
"license": "ISC",
"datoCmsPlugin": {
"title": "Bulk Editor",
"previewImage": "docs/preview.gif",
"coverImage": "docs/cover.png",
"entryPoint": "dist/index.html",
"pluginType": "field_addon",
"fieldTypes": [
"boolean",
"date",
"date_time",
"float",
"integer",
"string",
"text",
"json",
"color",
"video",
"lat_lon",
"links"
],
"parameters": {
"global": [
{
"id": "apikey",
"label": "Dato API key",
"type": "string",
"required": true,
"default": false,
"hint": "Full access API key"
}
],
"instance": []
}
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.54",
"@babel/core": "^7.0.0-beta.54",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.0.0-beta.54",
"@babel/register": "^7.0.0-beta.54",
"@babel/runtime": "7.0.0-beta.55",
"babel-eslint": "^8.2.6",
"babel-jest": "^24.5.0",
"babel-loader": "^8.0.0-beta",
"concurrently": "^4.0.1",
"css-loader": "^1.0.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"generator-datocms-plugin": "^1.0.3",
"html-webpack-include-assets-plugin": "^1.0.5",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.5.0",
"localtunnel": "^1.9.1",
"mini-css-extract-plugin": "^0.4.3",
"node-sass": "^4.9.3",
"sass-loader": "^7.1.0",
"serve": "^10.0.2",
"style-loader": "^0.23.0",
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.10",
"yo": "^2.0.5"
},
"dependencies": {
"datocms-client": "^0.8.15"
},
"version": "0.1.0"
}