UNPKG

2.87 kBJSONView Raw
1{
2 "name": "react-markdown-editor-lite",
3 "version": "1.3.1",
4 "description": "a light-weight Markdown editor based on React",
5 "main": "./cjs/index.js",
6 "module": "./esm/index.js",
7 "unpkg": "lib/index.js",
8 "jsdelivr": "lib/index.js",
9 "files": [
10 "cjs",
11 "esm",
12 "lib",
13 "preview",
14 "package.json",
15 "README.md"
16 ],
17 "scripts": {
18 "dev": "build-scripts start",
19 "build": "build-scripts build",
20 "prod": "build-scripts build",
21 "test": "mocha",
22 "coverage": "nyc mocha",
23 "precommit": "lint-staged"
24 },
25 "repository": {
26 "type": "git",
27 "url": "git+https://github.com/HarryChen0506/react-markdown-editor-lite.git"
28 },
29 "keywords": [
30 "markdown",
31 "html",
32 "editor",
33 "parser",
34 "react",
35 "component",
36 "plugins",
37 "pluggable"
38 ],
39 "author": "HarryChen && ShuangYa",
40 "license": "MIT",
41 "bugs": {
42 "url": "https://github.com/HarryChen0506/react-markdown-editor-lite/issues"
43 },
44 "homepage": "https://unpkg.com/react-markdown-editor-lite@1.3.1/build/index.html",
45 "devDependencies": {
46 "@alib/build-scripts": "^0.1.3",
47 "@iceworks/spec": "^1.0.0",
48 "@testing-library/react": "^10.2.1",
49 "@types/chai": "^4.2.7",
50 "@types/classnames": "^2.2.11",
51 "@types/markdown-it": "^0.0.8",
52 "@types/mocha": "^5.2.7",
53 "@types/node": "^13.5.1",
54 "@types/react": "^16.8.22",
55 "@types/react-dom": "^16.8.4",
56 "@types/uuid": "^8.3.1",
57 "@typescript-eslint/eslint-plugin": "^4.4.1",
58 "build-plugin-component": "^1.0.0",
59 "chai": "^4.2.0",
60 "eslint": "^6.8.0",
61 "eslint-config-airbnb-typescript": "^12.3.1",
62 "eslint-plugin-import": "^2.22.0",
63 "eslint-plugin-jsx-a11y": "^6.3.1",
64 "eslint-plugin-react": "^7.20.3",
65 "eslint-plugin-react-hooks": "^4.0.8",
66 "eslint-plugin-standard": "^4.0.1",
67 "fs-extra": "^10.0.0",
68 "husky": "^3.1.0",
69 "ignore-styles": "^5.0.1",
70 "jsdom": "^16.2.2",
71 "jsdom-global": "^3.0.2",
72 "lint-staged": "^10.0.2",
73 "markdown-it": "^8.4.2",
74 "mocha": "^5.2.0",
75 "mochawesome": "^4.1.0",
76 "nyc": "^15.0.0",
77 "prettier": "^1.19.1",
78 "react": "^16.9.0",
79 "react-dom": "^16.9.0",
80 "react-markdown": "^4.3.1",
81 "source-map-support": "^0.5.16",
82 "stylelint": "^13.7.2",
83 "ts-node": "^8.6.2",
84 "tsconfig-paths": "^3.9.0",
85 "typescript": "^3.5.2",
86 "url-loader": "^2.1.0"
87 },
88 "peerDependencies": {
89 "react": "^16.9.0 || ^17.0.0"
90 },
91 "lint-staged": {
92 "./src/**/*.{ts,tsx}": [
93 "eslint --fix",
94 "git add"
95 ]
96 },
97 "nyc": {
98 "include": [
99 "src/**/*.ts",
100 "src/**/*.tsx"
101 ],
102 "exclude": [
103 "**/*.d.ts"
104 ],
105 "reporter": [
106 "html"
107 ],
108 "all": true
109 },
110 "dependencies": {
111 "@babel/runtime": "^7.6.2",
112 "classnames": "^2.2.6",
113 "eventemitter3": "^4.0.0",
114 "uuid": "^8.3.2"
115 }
116}