-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.85 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.85 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
49
50
51
52
53
54
55
56
{
"name": "json2canvas",
"version": "1.2.3",
"description": "通过json直接在canvas上绘制图像.基于[cax](https://github.com/dntzhang/cax),借鉴(抄袭)了[mp_canvas_drawer](https://github.com/kuckboy1994/mp_canvas_drawer).比mp_canvas_drawer有更多的图形支持,图片圆角支持,缩放,分组等功能.同时支持小程序和浏览器.",
"main": "src/json2canvas.js",
"miniprogram": "dist_miniprogram",
"files": [
"dist_miniprogram",
"package.json",
"src",
"README.md"
],
"scripts": {
"dev": "cross-env BUILD_TARGET=development webpack-dev-server --open --config webpack.config.js",
"build": "cross-env BUILD_TARGET=production node build/build.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/willnewii/json2canvas.git"
},
"author": {
"name": "willnewii",
"email": "willnewii@163.com"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/willnewii/json2canvas/issues"
},
"homepage": "https://github.com/willnewii/json2canvas#readme",
"keywords": [
"canvas",
"web",
"weapp"
],
"dependencies": {
"cax": "^1.3.1",
"tree-model": "^1.0.7"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/runtime-corejs2": "^7.4.5",
"babel-loader": "^8.0.6",
"chalk": "^2.4.2",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^5.2.0",
"del": "^4.1.1",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.1"
}
}