-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.43 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
{
"name": "draw-freehand",
"version": "1.0.0",
"description": "Draw freehand on the canvas below. You can change the brush size and color, erase your drawing, and save it as an image.",
"author": {
"name": "Md Abbas Uddin",
"email": "[email protected]",
"url": "https://github.com/mdabbas-cse/"
},
"main": "dist/draw-freehand.min.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/mdabbas-cse/draw-freehand.git"
},
"scripts": {
"compile-css": "node-sass ./sass/app.scss ./app.min.css --watch --output-style compressed",
"build-rollup": "rollup -c",
"dev": "rollup -c -w",
"test": "node test/test.js",
"pretest": "npm run build"
},
"keywords": [
"freehand",
"drawing",
"canvas",
"signature",
"paint",
"signature-pad",
"painting",
"draw",
"draw-on-canvas",
"draw-on-image",
"draw-on-picture",
"draw-on-photo",
"perfect-freehand",
"perfect-freehand-drawing",
"perfect-freehand-drawing-on-canvas"
],
"license": "ISC",
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"node-sass": "^9.0.0",
"rollup": "^3.26.3"
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/mdabbas-cse/draw-freehand/issues"
},
"homepage": "https://github.com/mdabbas-cse/draw-freehand/blob/main/README.MD"
}