-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.48 KB
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
{
"author": "Peter Müller <munter@fumle.dk> (http://fumle.dk)",
"name": "histogram",
"version": "3.0.3",
"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": "munter@fumle.dk",
"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"
},
"files": [
"lib",
"histogram.min.js"
],
"main": "lib/index.js",
"dependencies": {
"canvas": "^2.3.1"
},
"devDependencies": {
"coveralls": "^3.0.3",
"jshint": "^2.10.1",
"mocha": "^6.0.2",
"mocha-chrome": "^2.0.0",
"nyc": "15.1.0",
"uglify-js": "^3.4.9",
"unexpected": "13.2.1"
},
"scripts": {
"lint": "jshint .",
"browser-test": "mocha-chrome test/global.html --chrome-flags '[\"--allow-file-access-from-files\"]'",
"node-test": "mocha",
"test": "npm run lint && npm run node-test && npm run browser-test",
"coverage": "nyc --reporter=lcov --reporter=text mocha",
"travis": "npm run lint && npm run coverage && npm run browser-test",
"preversion": "npm t && uglifyjs lib/index.js -m -c > histogram.min.js && git add histogram.min.js"
}
}