forked from Jannchie/anichart.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.98 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "anichart",
"version": "2.4.4",
"description": "Data visualization animation library",
"author": "jannchie <jannchie@gmail.com>",
"license": "MIT",
"private": false,
"main": "lib/index.js",
"unpkg": "dist/anichart.js",
"jsdelivr": "dist/anichart.js",
"types": "typings/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Jannchie/anichart.js.git"
},
"engines": {
"node": ">=12.16.1"
},
"files": [
"dist/**/*",
"lib/**/*",
"src/**/*",
"typings/**/*"
],
"scripts": {
"build": "tsc --build tsconfig.json & webpack --config webpack.prod.js",
"deploy": "npm version prerelease",
"serve": "webpack serve --open --config webpack.dev.js --port 12341",
"dev": "webpack --config webpack.dev.js",
"watch": "webpack --watch --config webpack.dev.js",
"prepublish": "yarn build",
"test-node": "ts-node ./test/index_for_node.ts",
"git-patch": "git checkout --patch master ./src"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@types/async": "^3.2.5",
"@types/lodash-es": "^4.17.4",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"file-loader": "^6.1.0",
"prettier": "^2.1.2",
"source-map-loader": "^1.1.2",
"ts-loader": "^8.0.11",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "4.1.3",
"webpack": "^5.23.0",
"webpack-bundle-analyzer": "^4.1.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"@ffmpeg/core": "^0.10.0",
"@ffmpeg/ffmpeg": "^0.10.1",
"@types/d3": "^6.3.0",
"async": "^3.2.0",
"canvas": "^2.8.0",
"canvas-5-polyfill": "^0.1.5",
"d3": "^6.5.0",
"html-webpack-plugin": "^5.2.0",
"lodash-es": "^4.17.15",
"moment": "^2.29.1",
"node-csv": "^0.1.2",
"node-fetch-polyfill": "^2.0.6",
"path-browserify": "^1.0.1"
},
"keywords": [
"animation",
"chart",
"data",
"visualization"
]
}