forked from Automattic/node-canvas
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 805 Bytes
/
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
{
"name": "canvas",
"description": "Canvas graphics API backed by Cairo",
"version": "1.2.0",
"author": "TJ Holowaychuk <tj@learnboost.com>",
"contributors": [
"Nathan Rajlich <nathan@tootallnate.net>",
"Rod Vagg <r@va.gg>",
"Juriy Zaytsev <kangax@gmail.com>"
],
"keywords": [
"canvas",
"graphic",
"graphics",
"pixman",
"cairo",
"image",
"images",
"pdf"
],
"homepage": "https://github.com/learnboost/node-canvas",
"repository": "git://github.com/learnboost/node-canvas",
"scripts": {
"test": "make test"
},
"dependencies": {
"nan": "~1.5.1"
},
"devDependencies": {
"express": "3.0",
"jade": "0.28.1",
"mocha": "*",
"should": "*"
},
"engines": {
"node": ">= 0.6.0"
},
"main": "./lib/canvas.js"
}