-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy pathpackage.json
116 lines (116 loc) · 2.81 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "react-markdown-editor-lite",
"version": "1.2.5-9",
"description": "a light-weight Markdown editor based on React",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"unpkg": "lib/index.js",
"jsdelivr": "lib/index.js",
"files": [
"cjs",
"esm",
"lib",
"preview",
"package.json",
"README.md"
],
"scripts": {
"dev": "build-scripts start",
"build": "build-scripts build",
"prod": "build-scripts build",
"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://unpkg.com/[email protected]/build/index.html",
"devDependencies": {
"@alib/build-scripts": "^0.1.3",
"@iceworks/spec": "^1.0.0",
"@testing-library/react": "^10.2.1",
"@types/chai": "^4.2.7",
"@types/classnames": "^2.2.11",
"@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": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"build-plugin-component": "^1.0.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-standard": "^4.0.1",
"fs-extra": "^10.0.0",
"husky": "^3.1.0",
"ignore-styles": "^5.0.1",
"jsdom": "^16.2.2",
"jsdom-global": "^3.0.2",
"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",
"stylelint": "^13.7.2",
"ts-node": "^8.6.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.5.2",
"url-loader": "^2.1.0"
},
"peerDependencies": {
"react": "^16.9.0 || ^17.0.0 || ^18.0.0"
},
"lint-staged": {
"./src/**/*.{ts,tsx}": [
"eslint --fix",
"git add"
]
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html"
],
"all": true
},
"dependencies": {
"@babel/runtime": "^7.6.2",
"classnames": "^2.2.6",
"eventemitter3": "^4.0.0",
"uuid": "^8.3.2"
}
}