UNPKG

3.48 kBJSONView Raw
1{
2 "name": "@readme/markdown",
3 "description": "ReadMe's React-based Markdown parser",
4 "author": "Rafe Goldberg <rafe@readme.io>",
5 "version": "6.24.0",
6 "main": "dist/main.node.js",
7 "browser": "dist/main.js",
8 "files": [
9 "styles",
10 "components",
11 "dist"
12 ],
13 "scripts": {
14 "build": "webpack -p",
15 "lint": "eslint . --ext .jsx --ext .js",
16 "pretest": "npm run lint && npm run prettier",
17 "prettier": "prettier --list-different --write \"./**/**.{js,jsx}\"",
18 "test": "jest --coverage --runInBand",
19 "test.watch": "npm test -- --watch --coverage=false",
20 "watch": "webpack -w --progress --mode production",
21 "release": "npx semantic-release",
22 "release.dry": "npx semantic-release --dry-run"
23 },
24 "dependencies": {
25 "@readme/emojis": "^1.0.0",
26 "@readme/syntax-highlighter": "^10.4.0",
27 "copy-to-clipboard": "^3.3.1",
28 "hast-util-sanitize": "^2.0.2",
29 "hast-util-to-string": "^1.0.3",
30 "lodash.kebabcase": "^4.1.1",
31 "mdast-util-toc": "^5.0.3",
32 "prop-types": "^15.7.2",
33 "rehype-raw": "^4.0.1",
34 "rehype-react": "^5.0.0",
35 "rehype-sanitize": "^3.0.1",
36 "rehype-stringify": "^6.0.0",
37 "remark-breaks": "^1.0.0",
38 "remark-parse": "^7.0.2",
39 "remark-rehype": "^7.0.0",
40 "remark-slug": "^6.0.0",
41 "remark-stringify": "^8.0.0",
42 "unified": "^8.4.0",
43 "unist-util-flatmap": "^1.0.0",
44 "unist-util-map": "^2.0.0",
45 "unist-util-select": "^3.0.1"
46 },
47 "peerDependencies": {
48 "@readme/variable": "^10.0.0",
49 "react": "^16.14.0",
50 "react-dom": "^16.14.0"
51 },
52 "devDependencies": {
53 "@babel/core": "^7.10.5",
54 "@babel/plugin-proposal-class-properties": "^7.10.4",
55 "@babel/plugin-proposal-object-rest-spread": "^7.10.4",
56 "@babel/plugin-proposal-optional-chaining": "^7.9.0",
57 "@babel/preset-env": "^7.10.4",
58 "@babel/preset-react": "^7.10.4",
59 "@commitlint/cli": "^9.1.1",
60 "@commitlint/config-angular": "^9.1.1",
61 "@commitlint/config-conventional": "^9.1.1",
62 "@readme/eslint-config": "^3.7.1",
63 "@readme/variable": "^10.0.0",
64 "@semantic-release/changelog": "^5.0.1",
65 "@semantic-release/git": "^9.0.0",
66 "babel-core": "^7.0.0-bridge.0",
67 "babel-eslint": "^10.1.0",
68 "babel-jest": "^26.1.0",
69 "babel-loader": "^8.0.6",
70 "babel-polyfill": "^6.26.0",
71 "codemirror": "^5.58.3",
72 "css-loader": "^3.4.2",
73 "enzyme": "^3.11.0",
74 "enzyme-adapter-react-16": "^1.15.2",
75 "eslint": "^7.14.0",
76 "husky": "^4.2.5",
77 "identity-obj-proxy": "^3.0.0",
78 "jest": "^26.6.3",
79 "mini-css-extract-plugin": "^0.9.0",
80 "node-sass": "^4.12.0",
81 "prettier": "^2.2.1",
82 "react": "^16.14.0",
83 "react-dom": "^16.14.0",
84 "sass-loader": "^7.3.1",
85 "semantic-release": "^17.1.1",
86 "terser-webpack-plugin": "^3.0.3",
87 "webpack": "^4.41.0",
88 "webpack-cli": "^3.3.9",
89 "webpack-dev-server": "^3.8.2",
90 "webpack-merge": "^4.2.2"
91 },
92 "license": "MIT",
93 "homepage": "https://rdmd.readme.io",
94 "repository": "https://github.com/readmeio/markdown",
95 "publishConfig": {
96 "registry": "http://registry.npmjs.org",
97 "access": "public"
98 },
99 "prettier": "@readme/eslint-config/prettier",
100 "husky": {
101 "hooks": {
102 "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
103 }
104 },
105 "bundlewatch": {
106 "files": [
107 {
108 "path": "dist/main.js",
109 "maxSize": "400KB"
110 },
111 {
112 "path": "dist/main.node.js",
113 "maxSize": "250KB"
114 }
115 ]
116 }
117}