-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.59 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
{
"name": "rearkdown",
"version": "0.1.8",
"description": "Rearkdown is a react component for using your custom component in markdown files",
"private": false,
"babel": {
"presets": [
"@babel/preset-react"
]
},
"main": "./lib/index.js",
"types": "lib",
"files": [
"lib"
],
"dependencies": {
"@types/react": "^16.9.49",
"markdown-to-jsx": "^7.0.0"
},
"scripts": {
"build": "tsc -p ."
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/preset-react": "^7.10.4",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^24.9.1",
"@types/node": "^12.12.56",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.3",
"typescript": "^3.9.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anilsenay/rearkdown.git"
},
"homepage": "https://github.com/anilsenay/rearkdown#readme",
"keywords": [
"react-component",
"react",
"markdown",
"component",
"component in markdown",
"react markdown",
"markdown component"
],
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/anilsenay/rearkdown/issues"
}
}