forked from Munter/node-histogram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
{
"author": "Peter Müller <[email protected]> (http://fumle.dk)",
"name": "histogram",
"version": "0.1.2",
"description": "Provides a histogram data structure of png, gif and jpeg images using canvas. This library works in the browser as well",
"keywords": [
"histogram",
"image",
"png",
"jpeg",
"jpg",
"gif"
],
"maintainers": [
{
"name": "Peter Müller",
"email": "[email protected]",
"web": "http://fumle.dk"
}
],
"licenses": [
{
"type": "BeerWare"
}
],
"homepage": "http://munter.github.com/node-histogram",
"repository": {
"type": "git",
"url": "git://github.com/Munter/node-histogram.git"
},
"dependencies": {
"canvas": "=0.12.1"
},
"devDependencies": {
"uglify-js": ">=1.3.2",
"vows": ">=0.6.3"
},
"optionalDependencies": {},
"engines": {
"node": "*"
},
"scripts": {
"test": "vows",
"prepublish": "npm test"
}
}