-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
48 lines (48 loc) · 1.28 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
{
"name": "react-markdown-loader",
"version": "1.3.1",
"description": "Webpack loader to render React Components from markdown",
"keywords": [
"react",
"styleguide",
"webpack",
"loader",
"markdown"
],
"homepage": "https://github.com/javiercf/react-markdown-loader",
"bugs": "https://github.com/javiercf/react-markdown-loader/issues",
"license": "MIT",
"author": "Javier Cubides <[email protected]>",
"contributors": [
"Fernando Pasik <[email protected]> (https://fernandopasik.com/)"
],
"repository": {
"type": "git",
"url": "https://github.com/javiercf/react-markdown-loader.git"
},
"main": "src/index.js",
"scripts": {
"start": "watch 'yarn preversion' src/ test/",
"lint": "eslint .",
"test": "jest",
"preversion": "yarn lint && yarn test"
},
"dependencies": {
"camelize": "^1.0.0",
"except": "^0.1.3",
"front-matter": "^4.0.2",
"node-prismjs": "^0.1.2",
"remarkable": "^2.0.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"jest": "^24.9.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"watch": "^1.0.2"
}
}