This repository has been archived by the owner on Sep 29, 2021. It is now read-only.
forked from Automattic/node-canvas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.55 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": "canvas",
"description": "Canvas graphics API backed by Cairo",
"version": "2.0.0-alpha.12",
"author": "TJ Holowaychuk <[email protected]>",
"main": "index.js",
"browser": "browser.js",
"contributors": [
"Nathan Rajlich <[email protected]>",
"Rod Vagg <[email protected]>",
"Juriy Zaytsev <[email protected]>"
],
"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 test/server.js test/public/*.js benchmark/run.js util/has_lib.js browser.js index.js && mocha test/*.test.js",
"pretest-server": "node-gyp build",
"test-server": "node test/server.js",
"install": "node-pre-gyp install --fallback-to-build"
},
"binary": {
"module_name": "canvas-prebuilt",
"module_path": "build/Release",
"host": "https://github.com/node-gfx/node-canvas-prebuilt/releases/download/",
"remote_path": "v{version}",
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{libc}-{arch}.tar.gz"
},
"dependencies": {
"node-pre-gyp": "^0.9.0",
"nan": "^2.9.2"
},
"devDependencies": {
"assert-rejects": "^0.1.1",
"express": "^4.14.0",
"mocha": "^3.1.2",
"standard": "^8.5.0"
},
"engines": {
"node": ">=4"
},
"license": "MIT"
}