-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 793 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 793 Bytes
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
{
"name": "undo-canvas",
"version": "0.1.3",
"description": "Adds undo/redo functions to CanvasRenderingContext2D",
"main": "index.js",
"scripts": {
"build": "uglifyjs index.js -c | browserify - --standalone UndoCanvas -o undo-canvas.js",
"test": "open test.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/magicien/undo-canvas.git"
},
"keywords": [
"canvas"
],
"author": "magicien",
"license": "MIT",
"bugs": {
"url": "https://github.com/magicien/undo-canvas/issues"
},
"homepage": "https://github.com/magicien/undo-canvas#readme",
"devDependencies": {
"browserify": "^14.4.0",
"chai": "^4.1.2",
"mocha": "^3.5.0",
"uglify-es": "^3.0.28"
},
"dependencies": {
"reset-object": "^0.1.1"
}
}