-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
64 lines (64 loc) · 1.82 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
{
"name": "markdown-core",
"description": "An extensible markdown engine.",
"license": "MIT",
"version": "1.2.1",
"main": "dist/index.js",
"scripts": {
"upgrade": "yarn-upgrade-all",
"build": "webpack --progress --colors",
"build:watch": "yarn build --watch",
"release": "yarn build -p",
"test": "mocha"
},
"files": [
"dist",
"src"
],
"dependencies": {
"github-css": "^0.1.1",
"markdown-it": "^8.4.0",
"markdown-it-abbr": "^1.0.4",
"markdown-it-chart": "^0.2.0",
"markdown-it-container": "^2.0.0",
"markdown-it-deflist": "^2.0.3",
"markdown-it-footnote": "^3.0.1",
"markdown-it-github-toc": "^3.2.4",
"markdown-it-highlight": "^0.2.0",
"markdown-it-icons": "^0.4.1",
"markdown-it-ins": "^2.0.0",
"markdown-it-latex": "^0.2.0",
"markdown-it-mark": "^2.0.0",
"markdown-it-mermaid": "^0.2.5",
"markdown-it-source-map": "^0.1.1",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-task-list": "^0.1.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-remove-strict-mode": "^0.0.2",
"babel-preset-env": "^1.6.1",
"chart.js": "^2.7.1",
"chrome-remote-interface": "^0.25.5",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"http-server": "^0.10.0",
"js-cookie": "^2.2.0",
"mocha": "^4.0.1",
"standard": "^10.0.3",
"style-loader": "^0.19.1",
"webpack": "^3.10.0",
"webpack-node-externals": "^1.6.0",
"yarn-upgrade-all": "^0.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tylingsoft/markdown-core.git"
},
"bugs": {
"url": "https://github.com/tylingsoft/markdown-core/issues"
},
"homepage": "https://github.com/tylingsoft/markdown-core#readme"
}