This repository has been archived by the owner on Jan 2, 2025. It is now read-only.
forked from storybookjs/marksy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·57 lines (57 loc) · 1.54 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
{
"name": "marksy",
"version": "5.0.0",
"description": "Convert markdown into react components",
"main": "lib/index.js",
"scripts": {
"start": "webpack-dev-server --devtool eval-source-map --progress --colors --content-base build",
"prepublish": "npm run build",
"build": "BABEL_ENV=production babel src/ --out-dir=lib/ -s",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/cerebral/marksy"
},
"keywords": [
"react",
"markdown",
"convert"
],
"author": "Christian Alfoni",
"license": "MIT",
"bugs": {
"url": "https://github.com/cerebral/marksy/issues"
},
"homepage": "https://github.com/cerebral/marksy",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.24.1",
"babel-jest": "^19.0.0",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.15.2",
"highlight.js": "^9.12.0",
"inferno-create-element": "^3.3.1",
"inferno-server": "^3.3.1",
"jest": "^20.0.1",
"json-loader": "^0.5.2",
"node-libs-browser": "^0.5.2",
"preact": "^8.1.0",
"preact-render-to-string": "^3.6.3",
"prismjs": "^1.6.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"regenerator-runtime": "^0.10.3",
"style-loader": "^0.12.3",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"babel-standalone": "^6.24.0",
"he": "^1.1.1",
"marked": "ascent-technologies/marked#b8e00fd1"
}
}