-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "homography",
"version": "1.8.0",
"description": "Perform Affine, Projective or Piecewise Affine transformations over any Image or HTMLElement from only a set of reference points. High-Performance and easy-to-use.",
"main": "Homography.js",
"type": "module",
"directories": {
"test": "test"
},
"dependencies": {
"delaunator": "^5.0.0"
},
"scripts": {
"test": "node ./test/nodeTest.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eric-Canas/Homography.js.git"
},
"files": [
"Homography.js"
],
"keywords": [
"homography",
"computer-vision",
"projective-transform",
"piecewise-affine-transform",
"affine-transform",
"perspective-transform",
"perspective",
"fast",
"easy-to-use",
"javascript",
"image-manipulation",
"2d",
"warp"
],
"author": "Eric-Canas",
"license": "MIT",
"bugs": {
"url": "https://github.com/Eric-Canas/Homography.js/issues"
},
"homepage": "https://github.com/Eric-Canas/Homography.js#readme"
}