-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.43 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
{
"name": "markdown-it-charts",
"version": "1.0.5",
"main": "index.js",
"license": "MIT",
"author": {
"name": "chuyun",
"email": "[email protected]"
},
"bin": {
"markdown-it-charts": "bin/markdown-it-charts.js"
},
"files": [
"index.js",
"bin/",
"src/",
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/chuyun/markdown-it-charts.git"
},
"bugs": {
"url": "https://github.com/tylingsoft/markdown-it-chart/issues"
},
"homepage": "https://github.com/chuyun/markdown-it-charts",
"description": "chart plugin for markdown-it.",
"keywords": [
"markdown-it",
"markdown-it-plugin",
"markdown",
"charts",
"chart",
"echarts",
"c3"
],
"dependencies": {},
"devDependencies": {
"assert": "^1.4.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"markdown-it": "^8.4.1",
"webpack": "^4.10.2",
"webpack-cli": "^3.0.1",
"webpack-node-externals": "^1.7.2",
"yarn-upgrade-all": "^0.3.0"
},
"scripts": {
"build": "webpack --progress --color",
"build:watch": "yarn build --watch",
"release": "yarn build -p",
"test": "node -r babel-register test/index.js",
"upgrade": "yarn-upgrade-all"
}
}