-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
75 lines (75 loc) · 2.4 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": "wx-canvas-2d",
"version": "2.5.2",
"description": "微信小程序 canvas-2d 绘图工具,支持按需引用,支持内容配置,支持功能扩展,适配各种机型,超轻量,超易用,无需学习,直接上手。",
"main": "miniprogram_dist",
"miniprogram": "miniprogram_dist",
"types": "miniprogram_dist/index.d.ts",
"files": [
"miniprogram_dist",
"postinstall.js"
],
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^7.1.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-runtime": "^6.26.0",
"chalk": "^4.1.2",
"delete": "^1.1.0",
"eslint": "^6.8.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-uglify": "^3.0.2",
"numeral": "^2.0.6",
"standard": "^14.3.4",
"table": "^6.7.1",
"vuepress": "^1.8.2",
"webpack": "^4.44.2",
"webpack-cli": "^4.1.0"
},
"scripts": {
"build": "npm run gulp-build && npm run build:md && npm run docs:build && npm run build:postinstall",
"gulp-dev": "gulp --watch",
"gulp-build": "gulp",
"dev": "exit && webpack --config webpack.config.js",
"lint-fix": "eslint --fix --ext .js pages components res app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"docs:dev": "vuepress dev doc",
"docs:build": "vuepress build doc",
"postinstall": "node ./postinstall.js",
"build:postinstall": "node ./scripts/postinstall-build.js",
"prepublish": "npm run gulp-build && (npm run build:md & npm run build:postinstall)",
"build:md": "node ./scripts/md.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kiccer/wx-canvas-2d.git"
},
"keywords": [
"wechat",
"miniprogram",
"wx",
"canvas",
"canvas-2d",
"poster",
"微信",
"小程序",
"海报"
],
"author": "kiccer",
"license": "MIT",
"bugs": {
"url": "https://github.com/kiccer/wx-canvas-2d/issues"
},
"homepage": "https://github.com/kiccer/wx-canvas-2d#readme",
"volta": {
"node": "16.20.2",
"npm": "8.19.4"
},
"engines": {
"node": ">=16.0.0"
}
}