-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
72 lines (72 loc) · 1.5 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "image-sdf",
"version": "1.0.4",
"description": "generate a signed distance field from an image",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "[email protected]",
"url": "https://github.com/mattdesl"
},
"bin": {
"image-sdf": "./bin/cmd.js"
},
"dependencies": {
"as-number": "^1.0.0",
"clamp": "^1.0.1",
"color-string": "^0.2.1",
"get-pixels": "^3.1.0",
"ndarray": "^1.0.16",
"save-pixels": "^2.2.0",
"typedarray-pool": "^1.1.0",
"yargs": "^1.3.3"
},
"devDependencies": {
"2d-context": "^1.2.0",
"baboon-image-uri": "^1.0.1",
"browserify": "^8.1.3",
"buffer-equal": "0.0.1",
"concat-stream": "^1.4.7",
"garnish": "^2.1.0",
"get-image-pixels": "^1.0.0",
"img": "^1.0.0",
"npm-execspawn": "^1.0.6",
"tap-spec": "^2.2.1",
"tape": "^3.0.3",
"wzrd": "^1.2.1"
},
"scripts": {
"test": "node test/test.js | tap-spec",
"test-browser": "wzrd test/test-browser.js | garnish"
},
"keywords": [
"sdf",
"bitmap",
"bmp",
"png",
"img",
"jpg",
"image",
"signed",
"distance",
"field",
"text",
"alpha",
"test",
"fonts",
"webgl",
"gl",
"stackgl",
"glsl",
"shader"
],
"repository": {
"type": "git",
"url": "git://github.com/mattdesl/image-sdf.git"
},
"homepage": "https://github.com/mattdesl/image-sdf",
"bugs": {
"url": "https://github.com/mattdesl/image-sdf/issues"
}
}