forked from LinFeng1997/markdown-it-react-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.89 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
{
"name": "markdown-it-react-component",
"version": "0.5.8",
"description": "Plugin to support react component for markdown-it markdown parser",
"main": "dist/index.js",
"scripts": {
"storybook": "start-storybook -p 9001 -c .storybook",
"build": "rollup -c",
"lint": "eslint lib --fix",
"pub": "npm run test && npm run build && npm version patch && npm publish",
"test": "./node_modules/.bin/jest",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"test:coverage": "jest -u --coverage"
},
"author": "",
"license": "MIT",
"keywords": [
"markdown-it-plugin",
"markdown-it",
"markdown",
"react"
],
"dependencies": {
"babel-standalone": "^6.26.0",
"dompurify": "^1.0.10",
"markdown-it-container": "^2.0.0",
"react": "^16.9.0",
"react-dom": "^16.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LinFeng1997/markdown-it-react-component.git"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-parameters": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/runtime": "^7.3.1",
"@storybook/react": "^4.1.11",
"antd": "^3.13.2",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.4.1",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.7.0",
"eslint-plugin-react": "^7.18.3",
"highlight.js": "^9.14.2",
"jest": "^24.9.0",
"markdown-it": "^8.4.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"rollup": "^1.2.1",
"rollup-plugin-babel": "^4.3.2",
"tui-editor": "^1.3.0"
}
}