markdown-to-jsx 5.4.1 → 5.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
File without changes
package/README.md CHANGED
File without changes
package/index.cjs.js CHANGED
File without changes
package/index.esm.js CHANGED
File without changes
package/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Interprets markdown text and outputs a JSX equivalent.",
4
4
  "homepage": "http://probablyup.github.io/markdown-to-jsx",
5
5
  "license": "MIT",
6
- "version": "5.4.1",
6
+ "version": "5.4.2",
7
7
  "engines": {
8
8
  "node": ">= 4"
9
9
  },
@@ -27,30 +27,31 @@
27
27
  "jsnext:main": "index.esm.js",
28
28
  "module": "index.esm.js",
29
29
  "devDependencies": {
30
- "autoprefixer-stylus": "^0.13.0",
31
30
  "babel-cli": "^6.14.0",
32
- "babel-jest": "^19.0.0",
31
+ "babel-jest": "^20.0.3",
32
+ "babel-loader": "^7.1.1",
33
+ "babel-plugin-styled-components": "^1.1.7",
34
+ "babel-plugin-transform-react-remove-prop-types": "^0.4.6",
33
35
  "babel-preset-es2015": "^6.14.0",
34
- "babel-preset-es2015-native-modules": "^6.9.4",
35
36
  "babel-preset-react": "^6.11.1",
36
37
  "babel-preset-stage-2": "^6.13.0",
37
- "babelify": "^7.3.0",
38
- "browserify": "^14.1.0",
39
- "budo": "^9.2.0",
40
- "bundle-collapser": "^1.2.1",
41
38
  "codecov": "^2.1.0",
42
39
  "in-publish": "^2.0.0",
43
- "jest-cli": "^19.0.2",
40
+ "jest": "^20.0.4",
41
+ "polished": "^1.3.0",
42
+ "preact": "^8.2.1",
43
+ "preact-compat": "^3.16.0",
44
44
  "react": "^15.6.1",
45
45
  "react-dom": "^15.6.1",
46
- "stylus": "^0.54.5",
46
+ "styled-components": "^2.1.1",
47
47
  "uglify-js": "^2.7.3",
48
- "watchify": "^3.7.0"
48
+ "webpack": "^3.4.1",
49
+ "webpack-dev-server": "^2.6.1"
49
50
  },
50
51
  "dependencies": {
51
52
  "lodash.get": "^4.4.2",
52
53
  "prop-types": "^15.5.10",
53
- "remark-parse": "^3.0.1",
54
+ "remark-parse": "^4.0.0",
54
55
  "unified": "^6.1.5"
55
56
  },
56
57
  "peerDependencies": {
@@ -65,15 +66,9 @@
65
66
  },
66
67
  "scripts": {
67
68
  "prepublish": "in-publish && npm run build || not-in-publish",
68
- "build": "babel index.js --out-file index.cjs.js && babel index.js --no-babelrc --out-file index.esm.js --presets=es2015-native-modules,react,stage-2",
69
- "site:css": "stylus -u autoprefixer-stylus site.styl -o docs/css/style.css",
70
- "site:css:release": "npm run site:css -- -c",
71
- "site:css:watch": "npm run site:css -- -w -m -l --sourcemap-inline",
72
- "site:js": "browserify site.js -t babelify -p bundle-collapser/plugin",
73
- "site:js:release": "NODE_ENV=production npm run -s site:js | uglifyjs -mc drop_console --screw-ie8 -o docs/js/bundle.js",
74
- "site:js:watch": "budo site.js:js/bundle.js -d docs -H 0.0.0.0 --colors --live --open --pushstate --iw -- -t babelify",
75
- "site:release": "npm run site:css:release && npm run site:js:release",
76
- "start": "sh scripts/parallelize.sh \"npm run site:css:watch\" \"npm run site:js:watch\"",
69
+ "build": "babel index.js --out-file index.cjs.js && BABEL_ENV=esm babel index.js --out-file index.esm.js",
70
+ "release": "webpack --config ./webpack.release.config.babel.js -p --display-optimization-bailout",
71
+ "start": "webpack-dev-server --hot --inline --open",
77
72
  "test": "jest --verbose"
78
73
  }
79
74
  }