UNPKG

react-markdown-editor-lite

Version:
110 lines (109 loc) 2.55 kB
{ "name": "react-markdown-editor-lite", "version": "1.0.2", "description": "a light-weight Markdown editor based on React", "main": "./lib/index.js", "typings": "./lib/index.d.ts", "files": [ "lib", "src", "package.json", "README.md" ], "directories": { "example": "example", "lib": "lib", "test": "test" }, "scripts": { "dev": "nowa2 server", "build": "nowa2 build", "prod": "nowa2 build -o", "test": "mocha", "coverage": "nyc mocha", "precommit": "lint-staged" }, "repository": { "type": "git", "url": "git+https://github.com/HarryChen0506/react-markdown-editor-lite.git" }, "keywords": [ "markdown", "html", "editor", "parser", "react", "component", "plugins", "pluggable" ], "author": "HarryChen && ShuangYa", "license": "MIT", "bugs": { "url": "https://github.com/HarryChen0506/react-markdown-editor-lite/issues" }, "homepage": "https://github.com/HarryChen0506/react-markdown-editor-lite#readme", "devDependencies": { "@nowa/solution-react-component": "^0.2.1", "@types/chai": "^4.2.7", "@types/markdown-it": "^0.0.8", "@types/mocha": "^5.2.7", "@types/node": "^13.5.1", "@types/react": "^16.8.22", "@types/react-dom": "^16.8.4", "@types/uuid": "^3.4.6", "chai": "^4.2.0", "dts-bundle": "^0.7.3", "eslint": "^6.8.0", "eslint-config-airbnb": "^18.0.1", "eslint-plugin-import": "^2.20.0", "eslint-plugin-jsx-a11y": "^6.2.3", "eslint-plugin-react": "^7.18.0", "eslint-plugin-standard": "^4.0.1", "glob": "^7.1.4", "husky": "^3.1.0", "lint-staged": "^10.0.2", "markdown-it": "^8.4.2", "mocha": "^5.2.0", "mochawesome": "^4.1.0", "nyc": "^15.0.0", "prettier": "^1.19.1", "react": "^16.9.0", "react-dom": "^16.9.0", "react-markdown": "^4.3.1", "source-map-support": "^0.5.16", "ts-node": "^8.6.2", "tslint": "^6.0.0", "tslint-config-prettier": "^1.18.0", "tslint-plugin-prettier": "^2.1.0", "tslint-react": "^4.2.0", "typescript": "^3.5.2", "url-loader": "^2.1.0" }, "dependencies": { "eventemitter3": "^4.0.0", "uuid": "^3.4.0" }, "peerDependencies": { "react": "^16" }, "lint-staged": { "./src/**/*.{ts,tsx}": [ "tslint --fix", "git add" ] }, "nyc": { "include": [ "src/**/*.ts", "src/**/*.tsx" ], "exclude": [ "**/*.d.ts" ], "reporter": [ "html" ], "all": true } }