-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·44 lines (44 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
42
43
44
{
"name": "chartjs-plugin-datapointer",
"version": "0.1.5",
"description": "allows chartjs to add arrow pointing to specific data points",
"main": "dist/chartjs-plugin-datapointer.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --content-base dist",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scotthsieh0503/chartjs-plugin-datapointer"
},
"keywords": [
"chartjs",
"plugin",
"chartjs-plugin"
],
"author": "Scott Hsieh",
"license": "MIT",
"bugs": {
"url": "https://github.com/scotthsieh0503/chartjs-plugin-datapointer/issues"
},
"homepage": "https://github.com/scotthsieh0503/chartjs-plugin-datapointer#readme",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-loader": "^8.0.0",
"chart.js": "^2.7.2",
"eslint": "^5.5.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.17.1",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.7"
},
"dependencies": {}
}