forked from markpluslabs/react-markplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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
{
"name": "markdown-plus",
"version": "2.5.2",
"description": "Markdown editor with extra features",
"main": "index.js",
"scripts": {
"upgrade": "node_modules/.bin/yarn-upgrade-all && yarn remove jquery && yarn add [email protected]",
"build": "node -r babel-register node_modules/.bin/webpack --progress --colors",
"watch": "yarn build -- --watch",
"dist": "yarn build -- -p"
},
"dependencies": {
"chart.js": "^2.6.0",
"codemirror": "^5.26.0",
"jquery": "2.2.4",
"js-cookie": "^2.1.4",
"lodash": "^4.17.4",
"markdown-core": "^1.1.0"
},
"keywords": [
"markdown",
"editor",
"markdown plus",
"mdp",
"tylingsoft"
],
"files": [
"src",
"dist"
],
"author": "Tyler Long",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tylingsoft/markdown-plus.git"
},
"bugs": {
"url": "https://github.com/tylingsoft/markdown-plus/issues"
},
"homepage": "https://github.com/tylingsoft/markdown-plus#readme",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-remove-strict-mode": "^0.0.2",
"babel-preset-env": "^1.5.1",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^2.1.0",
"standard": "^10.0.2",
"style-loader": "^0.18.1",
"webpack": "^2.6.1",
"yarn-upgrade-all": "^0.1.5"
}
}