forked from HarryChen0506/react-markdown-editor-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 2.63 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
{
"name": "react-markdown-editor-lite",
"version": "1.1.0-beta.1",
"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",
"@testing-library/react": "^10.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",
"eventemitter3": "^4.0.0",
"glob": "^7.1.4",
"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",
"ts-node": "^8.6.2",
"tsconfig-paths": "^3.9.0",
"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",
"uuid": "^3.4.0"
},
"peerDependencies": {
"react": "^16.9.0"
},
"lint-staged": {
"./src/**/*.{ts,tsx}": [
"tslint --fix",
"git add"
]
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html"
],
"all": true
}
}