-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
41 lines (41 loc) · 1.29 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
{
"name": "apexcharter",
"version": "1.0.0",
"description": "Htmlwidget for [apexcharts.js](https://github.com/apexcharts/apexcharts.js) : A modern JavaScript charting library to build interactive charts and visualizations with simple API. See the [online demo](https://dreamrs.github.io/apexcharter/) for examples.",
"main": "index.js",
"directories": {
"doc": "docs",
"example": "examples",
"man": "man",
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"none": "webpack --config webpack.dev.js --mode=none",
"development": "webpack --config webpack.dev.js",
"production": "webpack --config webpack.prod.js",
"watch": "webpack --config webpack.dev.js -d --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dreamRs/apexcharter.git"
},
"keywords": [],
"author": "Victor Perrier",
"license": "MIT",
"bugs": {
"url": "https://github.com/dreamRs/apexcharter/issues"
},
"homepage": "https://github.com/dreamRs/apexcharter#readme",
"devDependencies": {
"css-loader": "^6.5.1",
"style-loader": "^3.3.1",
"webpack": "^5.94.0",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"apexcharts": "^4.0.0",
"d3-format": "^3.0.1"
}
}