-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.27 KB
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
{
"name": "chart-utils",
"version": "1.0.0",
"description": "Utils Object from Chart.js",
"main": "./dist/chart-utils.min.js",
"files": [
"dist/chart-utils.min.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/imhvost/chart-utils"
},
"scripts": {
"build": "rimraf dist && webpack --config webpack.config.js --mode production",
"dev": "webpack-dev-server --open --config webpack.config.js --mode development"
},
"keywords": [
"Chart.js",
"Utils"
],
"author": "imhvost",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.18.10",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.5",
"babel-preset-env": "^1.7.0",
"chart.js": "^3.9.1",
"eslint": "^8.22.0",
"eslint-config-standard": "^17.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-webpack-plugin": "^3.2.0",
"html-webpack-plugin": "^5.5.0",
"rimraf": "^3.0.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.0"
},
"dependencies": {
"@kurkle/color": "^0.2.1",
"luxon": "^3.0.1"
}
}