forked from jimp-dev/jimp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.57 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
{
"name": "jimp",
"version": "0.2.27",
"description": "An image processing library written entirely in JavaScript (i.e. zero external or native dependencies).",
"main": "index.js",
"scripts": {
"test": "./test/tests.sh",
"prepublish": "./browser/browserify-build.sh",
"minify-jimp": "uglifyjs browser/tmp.jimp.js --compress warnings=false --mangle -o browser/tmp.jimp.min.js"
},
"keywords": [
"image",
"image processing",
"image manipulation",
"png",
"jpg",
"jpeg",
"bmp",
"resize",
"scale",
"crop"
],
"author": "Oliver Moran <[email protected]>",
"license": "MIT",
"dependencies": {
"bignumber.js": "^2.1.0",
"bmp-js": "0.0.2",
"es6-promise": "^3.0.2",
"exif-parser": "^0.1.9",
"file-type": "^3.1.0",
"jpeg-js": "^0.2.0",
"load-bmfont": "^1.2.3",
"mime": "^1.3.4",
"pixelmatch": "^4.0.0",
"pngjs": "^3.0.0",
"read-chunk": "^1.0.1",
"request": "^2.65.0",
"stream-to-buffer": "^0.1.0",
"tinycolor2": "^1.1.2",
"url-regex": "^3.0.0"
},
"devDependencies": {
"babel": "^6.0.14",
"babel-cli": "^6.0.0",
"babel-preset-es2015": "^6.0.14",
"babel-preset-stage-0": "^6.0.14",
"browserify": "^13.0.0",
"envify": "^3.4.0",
"express": "^4.13.4",
"uglify-js": "^2.6.1",
"uglifyify": "^3.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/oliver-moran/jimp.git"
},
"bugs": {
"url": "https://github.com/oliver-moran/jimp/issues"
},
"tonicExampleFilename": "example.js",
"browser": "browser/lib/jimp.js"
}