react-style-editor
Version:
A React component that displays and edits CSS, similar to the browser's DevTools.
69 lines (68 loc) • 1.81 kB
JSON
{
"name": "react-style-editor",
"version": "0.4.0",
"description": "A React component that displays and edits CSS, similar to the browser's DevTools.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Aurelain/react-style-editor.git"
},
"author": "Aurelain <aurelain@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/Aurelain/react-style-editor/",
"keywords": [
"react",
"style",
"editor",
"CSS",
"rules",
"declarations",
"comment",
"checkbox",
"validator"
],
"scripts": {
"storybook": "start-storybook",
"lib": "rm -rf lib && mkdir lib && babel src -d lib",
"collect-database": "node scripts/collect-database.js"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@storybook/react": "^5.0.11",
"babel-loader": "^8.0.5",
"prettier": "^2.4.1",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"files": [
"lib",
"src"
],
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"prettier": {
"tabWidth": 4,
"singleQuote": true,
"printWidth": 120,
"bracketSpacing": false
},
"bugs": {
"url": "https://github.com/Aurelain/react-style-editor/issues"
},
"directories": {
"lib": "lib",
"test": "tests"
}
}