-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 2.11 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
{
"name": "@bryanadamss/drawing-board",
"version": "1.5.13",
"description": "canvas绘图板,提供绘制、撤销、旋转、下载等功能",
"main": "dist/drawing-board.umd.js",
"module": "dist/drawing-board.esm.js",
"unpkg": "dist/drawing-board.umd.js",
"files": [
"dist/**/*"
],
"scripts": {
"clean": "shx rm -rf dist/*",
"prebuild": "npm run clean",
"build": "rollup --config rollup.config.js",
"release": "standard-version",
"release:first": "npm run release --first-release",
"prepublishOnly": "npm run build",
"publish2Remote": "git push --follow-tags origin master && npm publish --access=public",
"pub": "sh release.sh",
"commit": "git-cz",
"dev": "npm run build && node examples/server.js",
"useTbOrigin": "nrm use taobao",
"useNpmOrigin": "nrm use npm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BryanAdamss/drawing-board.git"
},
"keywords": [
"canvas",
"drawing",
"paint"
],
"author": "GuangHui",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.0.6",
"commitizen": "^4.0.3",
"core-js": "^3.2.1",
"cz-conventional-changelog": "^3.0.2",
"express": "^4.17.1",
"nrm": "^1.2.1",
"rollup": "^1.20.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-babel-minify": "^9.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.24.3",
"shx": "^0.3.2",
"standard-version": "^7.0.0",
"typescript": "^3.6.4",
"webpack": "^4.41.2",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0"
},
"bugs": {
"url": "https://github.com/BryanAdamss/drawing-board/issues"
},
"homepage": "https://github.com/BryanAdamss/drawing-board#readme",
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}