-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.54 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
{
"name": "html-json2canvas",
"version": "1.1.0-1",
"description": "基于JSON配置,使用 Canvas 绘制网页界面",
"main": "dist/json2canvas.umd.min.js",
"directories": {
"dist": "dist"
},
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "webpack --mode=production",
"build:dev": "webpack --mode=development --watch",
"demo:dev": "demosify --serve",
"demo:prod": "demosify --prod",
"preversion": "npm run build",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wangqh/json2canvas.git"
},
"keywords": [
"canvas",
"json",
"image",
"generate",
"json2canvas",
"html2canvas"
],
"author": "Chanh Wang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wangqh/json2canvas/issues"
},
"homepage": "https://github.com/wangqh/json2canvas#readme",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@demosify/core": "^0.6.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-async-to-promises": "^0.8.15",
"conventional-changelog-cli": "^2.1.1",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"canvas": "^2.6.1"
}
}