-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.15 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
{
"name": "@platzi/react-markdown",
"version": "1.0.4",
"description": "React component to parse and render Platzi Flavored Markdown content",
"main": "index.js",
"scripts": {
"test": "jest",
"test:fix": "jest -u",
"test:watch": "jest --watch",
"test:report": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PlatziDev/react-markdown.git"
},
"keywords": [
"react",
"markdown",
"platzi"
],
"author": {
"name": "Platzi Team",
"email": "[email protected]",
"url": "https://github.com/PlatziDev"
},
"contributors": [
{
"name": "Sergio Daniel Xalambrí",
"email": "[email protected]",
"url": "https://sergio.xalambri.xyz/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/PlatziDev/react-markdown/issues"
},
"homepage": "https://github.com/PlatziDev/react-markdown#readme",
"dependencies": {
"@platzi/markdown": "1.2.0"
},
"devDependencies": {
"jest": "20.0.4",
"react": "15.6.1",
"react-test-renderer": "15.6.1"
},
"peerDependencies": {
"prop-types": "^15.5.10",
"react": "^15.0.0"
}
}