forked from quantizor/markdown-to-jsx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.55 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
{
"name": "markdown-to-jsx",
"description": "Interprets markdown text and outputs a JSX equivalent.",
"homepage": "http://probablyup.github.io/markdown-to-jsx",
"license": "MIT",
"version": "6.6.1",
"engines": {
"node": ">= 4"
},
"keywords": [
"markdown",
"react",
"jsx"
],
"author": "Evan Scott <probablyup@gmail.com>",
"repository": "probablyup/markdown-to-jsx",
"bugs": "https://github.com/probablyup/markdown-to-jsx/issues",
"files": [
"index.js",
"index.cjs.js",
"index.js.js.map",
"index.esm.js",
"index.esm.js.map",
"LICENSE",
"README.md"
],
"main": "index.cjs.js",
"jsnext:main": "index.esm.js",
"module": "index.esm.js",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.4",
"babel-plugin-emotion": "^8.0.11",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.13.0",
"codecov": "^2.1.0",
"emotion": "^8.0.11",
"eslint": "^4.12.1",
"eslint-plugin-react": "^7.5.1",
"in-publish": "^2.0.0",
"jest": "^20.0.4",
"jest-serializer-html": "^5.0.0",
"polished": "^1.3.0",
"preact": "^8.2.1",
"preact-compat": "^3.16.0",
"preact-emotion": "^8.0.11",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"size-limit": "^0.16.2",
"uglify-js": "^3.3.15",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12",
"webpack-dev-server": "^3.1.1"
},
"dependencies": {
"prop-types": "^15.5.10",
"unquote": "^1.1.0"
},
"peerDependencies": {
"react": ">= 0.14.0"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-2"
]
},
"scripts": {
"prepublish": "in-publish && npm run build && npm run release || not-in-publish",
"lint": "eslint index.js index.spec.js site.js",
"build": "babel index.js --out-file index.cjs.js --source-maps && BABEL_ENV=esm babel index.js --out-file index.esm.js --source-maps",
"release": "webpack --config ./webpack.config.prod.babel.js -p --display-optimization-bailout",
"release:debug": "webpack --config ./webpack.config.babel.js --display-optimization-bailout",
"start": "webpack-dev-server --hot --inline --open",
"test": "jest --verbose",
"size": "size-limit"
},
"size-limit": [
{
"path": "index.cjs.js",
"limit": "5 kB"
}
],
"jest": {
"snapshotSerializers": [
"jest-serializer-html"
]
}
}