-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 913 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
40
{
"name": "canvas-renderer",
"version": "2.2.1",
"description": "HTML5 inspired canvas that can be rendered to PNG with no native dependencies.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dmester/canvas-renderer"
},
"dependencies": {
"@types/node": "*"
},
"devDependencies": {
"pngjs": "^3.3.3",
"tap": "^12.1.1",
"typescript": "^3.6.3"
},
"scripts": {
"test": "npm run test:unit && npm run test:types",
"test:unit": "tap tests/*Tests.js",
"test:types": "tsc -p ./tests/types/tsconfig.json"
},
"bugs": {
"url": "https://github.com/dmester/canvas-renderer/issues"
},
"keywords": [
"javascript",
"canvas",
"rasterize",
"rasterizer",
"renderer",
"png",
"polygon"
],
"main": "index.js",
"types": "./types/index.d.ts",
"author": {
"name": "Daniel Mester Pirttijärvi"
}
}