-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.61 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
{
"name": "lw-chart",
"version": "1.1.5",
"description": "A lightweight chart implemented by canvas",
"homepage": "https://github.com/AD-feiben/lw-chart",
"main": "./dist/index.common.js",
"types": "./types/index.d.ts",
"files": [
"src",
"dist",
"types"
],
"scripts": {
"dev": "node build/dev.js",
"build-type": "rm -rf ./types/ && tsc --emitDeclarationOnly --declarationDir ./types",
"build": "npm run build-type && node build/build.js",
"eslint": "eslint src --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"light weight",
"custom",
"canvas chart"
],
"author": "ad-feiben",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.4",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-export-default-from": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/plugin-transform-modules-umd": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@soda/friendly-errors-webpack-plugin": "^1.8.1",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"babel-loader": "^8.2.3",
"chalk": "^4.0.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.32.0",
"eslint-loader": "^4.0.2",
"fork-ts-checker-webpack-plugin": "^4.1.3",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"progress-bar-webpack-plugin": "^2.1.0",
"typescript": "^3.8.3",
"webpack": "^5.69.0",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^4.2.2"
}
}