You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.1 KiB
46 lines
1.1 KiB
{
|
|
"name": "canvas",
|
|
"description": "Canvas graphics API backed by Cairo",
|
|
"version": "1.6.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/Automattic/node-canvas",
|
|
"repository": "git://github.com/Automattic/node-canvas.git",
|
|
"scripts": {
|
|
"prebenchmark": "node-gyp build",
|
|
"benchmark": "node benchmarks/run.js",
|
|
"pretest": "node-gyp build",
|
|
"test": "standard examples/*.js && mocha test/*.test.js",
|
|
"pretest-server": "node-gyp build",
|
|
"test-server": "node test/server.js"
|
|
},
|
|
"dependencies": {
|
|
"nan": "^2.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"body-parser": "^1.13.3",
|
|
"express": "^4.13.2",
|
|
"pug": "^2.0.0-beta3",
|
|
"mocha": "*",
|
|
"standard": "^7.1.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.10.0"
|
|
},
|
|
"main": "./lib/canvas.js",
|
|
"license": "MIT"
|
|
}
|
|
|