-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
53 lines (53 loc) · 1.75 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
{
"name": "chartjs-plugin-stacked100",
"version": "1.7.0",
"description": "This plugin for Chart.js that makes your bar chart to 100% stacked bar chart",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"start": "webpack serve --mode development --config ./webpack/demo.config.js",
"build:demo": "webpack --mode production --config ./webpack/demo.config.js",
"build:plugin": "webpack --mode production --config ./webpack/plugin.config.js",
"type": "yarn tsc src/*.ts --declaration --emitDeclarationOnly --outDir build --skipLibCheck",
"prepare": "yarn dev && yarn build:plugin && yarn type",
"gh": "yarn build:demo && gh-pages -d demo",
"dev": "yarn eslint && yarn test",
"test": "jest --silent ./src/**",
"test:watch": "jest --watch ./src/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/y-takey/chartjs-plugin-stacked100.git"
},
"keywords": [
"chart.js"
],
"author": "y-takey",
"license": "MIT",
"bugs": {
"url": "https://github.com/y-takey/chartjs-plugin-stacked100/issues"
},
"homepage": "https://github.com/y-takey/chartjs-plugin-stacked100#readme",
"peerDependencies": {
"chart.js": ">=3.8.0"
},
"devDependencies": {
"@types/chart.js": "^2.9.41",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"chart.js": "^4.4.6",
"eslint": "^8.57.0",
"gh-pages": "^6.2.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}