-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.26 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
{
"name": "donut-chart-js",
"version": "1.0.1",
"description": "Simple donut chart with canvas",
"main": "dist/donut-chart.js",
"scripts": {
"lint": "eslint --ext .js .",
"build": "webpack"
},
"directories": {
"example": "examples",
"lib": "lib"
},
"repository": {
"type": "git",
"url": "https://github.com/Seogeurim/donut-chart-js.git"
},
"keywords": [
"canvas",
"chart",
"graphs",
"html5",
"pie chart",
"donut chart"
],
"author": "Seogeurim <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Seogeurim/donut-chart-js/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/Seogeurim/donut-chart-js#readme",
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"css-loader": "^6.2.0",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"sass": "^1.36.0",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"webpack": "^5.46.0",
"webpack-cli": "^4.7.2"
}
}