-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.79 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
{
"name": "@atomic-reactor/markdown-to-jsx",
"version": "0.0.26",
"description": "Component that takes plain text markdown and parses it into JSX",
"source": "src/index.js",
"main": "lib/markdown-to-jsx.js",
"files": [
"lib",
"src",
"umd"
],
"scripts": {
"test": "jest",
"clean": "del-cli ./lib",
"prepublishOnly": "npm version patch && npm run build",
"build": "npm-run-all clean build:*",
"build:lib": "cross-env NODE_ENV=production babel ./src/index.js --out-file ./lib/markdown-to-jsx.js --ignore __tests__",
"build:libReg": "cross-env NODE_ENV=production babel ./src/Registry.js --out-file ./lib/Registry.js --ignore __tests__",
"build:umd": "cross-env NODE_ENV=production webpack ./src/index.js --output-path ./umd/markdown-to-jsx.js",
"build:umdReg": "cross-env NODE_ENV=production webpack ./src/Registry.js --output-path ./umd/Registry.js",
"build:min": "cross-env NODE_ENV=production webpack --mode=production ./src/index.js --output-path ./umd/markdown-to-jsx.min.js",
"build:minReg": "cross-env NODE_ENV=production webpack --mode=production ./src/Registry.js --output-path ./umd/Registry.min.js"
},
"lint-staged": {
"*.{js,json,jsx,css,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ReactiumCore/markdown-to-jsx.git"
},
"keywords": [
"markdown",
"react",
"jsx"
],
"author": "Cam Tullos <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ReactiumCore/markdown-to-jsx/issues"
},
"homepage": "https://github.com/ReactiumCore/markdown-to-jsx#readme",
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.24.3",
"@babel/preset-react": "^7.24.1",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"cross-env": "^7.0.3",
"del-cli": "^5.1.0",
"jest": "^29.7.0",
"microbundle": "^0.15.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"react": ">=15.0.1",
"react-dom": ">=15.0.1",
"react-test-renderer": "^18.2.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"marked": "^12.0.1",
"object-path": "^0.11.8",
"prop-types": "^15.8.1",
"react-jsx-parser": "^1.29.0",
"underscore": "^1.13.6",
"uuid": "^9.0.1"
},
"peerDependencies": {
"react": ">=15.0.1",
"react-dom": ">=15.0.1"
}
}