-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
{
"name": "resize-canvas",
"description": "change dimensions of an html5 canvas element, resizing from a relative position on canvas (center by default) and preserving image data",
"version": "1.0.0",
"author": {
"name": "Will Hoag",
"email": "dev@willhoag.com",
"url": "www.willhoag.com"
},
"bugs": {
"url": "https://github.com/willhoag/resize-canvas/issues"
},
"dependencies": {
"copy-canvas": "~0.0.1",
"draw-to-canvas": "~0.0.4",
"gl-vec2": "^1.0.0"
},
"devDependencies": {
"babel": "^5.8.21",
"babelify": "^6.1.3",
"browserify": "^11.0.1",
"create-canvas": "^1.0.1",
"phantomjs": "^1.9.17",
"standard": "^4.5.3",
"tap-spec": "^4.0.2",
"tape": "^4.0.1",
"tape-run": "^1.0.0"
},
"homepage": "git://github.com/willhoag/resize-canvas.git",
"keywords": [
"canvas",
"html5",
"resize",
"resolution",
"scale"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/willhoag/resize-canvas.git"
},
"scripts": {
"build": "babel index.es6 > index.js",
"prepublish": "npm test && npm run build",
"test": "standard index.es6 && browserify -t babelify --extension .es6 test.es6 | tape-run | tap-spec"
}
}