-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.3 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
{
"name": "image-dicer",
"description": "Dice a photo into many triangles",
"version": "1.0.1",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"defaultJSON": "node bin/cli.js --input examples/input.jpg --output examples/default.json --json true",
"defaultImg": "node bin/cli.js --input examples/input.jpg --output examples/default.jpg --json false",
"withHooks": "node bin/cli --input examples/input.jpg --output examples/with-hooks.jpg --score examples/hooks/score.js --outlier examples/hooks/outlier.js --json false"
},
"bin": {
"image-dicer": "bin/cli.js"
},
"dependencies": {
"color": "^1.0.3",
"delaunator": "^1.0.3",
"get-pixels": "^3.3.0",
"performance-now": "^2.1.0",
"point-in-big-polygon": "^2.0.0",
"point-in-polygon": "^1.0.1",
"save-pixels": "^2.3.4"
},
"devDependencies": {},
"author": "Matthew Chase Whittemore",
"license": "ISC",
"directories": {
"example": "examples"
},
"keywords": [
"ndarray",
"image",
"triangles"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mcwhittemore/image-dicer.git"
},
"bugs": {
"url": "https://github.com/mcwhittemore/image-dicer/issues"
},
"homepage": "https://github.com/mcwhittemore/image-dicer#readme"
}