forked from papandreou/express-processimage
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "express-processimage",
"version": "10.1.0",
"description": "Express middleware that processes served images according to the query string",
"main": "lib/processImage.js",
"directories": {
"test": "test",
"bin": "bin"
},
"dependencies": {
"accepts": "^1.3.3",
"animated-gif-detector": "^1.2.0",
"bluebird": "^3.3.4",
"createerror": "^1.1.0",
"exif-reader": "^1.0.2",
"gm-papandreou": "^1.23.0-patch1",
"hijackresponse": "^5.0.0",
"httperrors": "^2.0.1",
"impro": "~0.9.0",
"inkscape": "^3.0.0",
"jpegtran": "^2.0.0",
"mime": "^2.3.1",
"optimist": "^0.6.1",
"optipng": "^3.0.0",
"passerror": "^1.1.1",
"pngcrush": "^3.0.0",
"pngquant": "^4.0.0",
"sharp": "^0.28.0"
},
"devDependencies": {
"browser-sync": "^2.18.6",
"compression": "^1.6.1",
"coveralls": "^3.0.1",
"eslint": "^7.11.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"express": "^4.16.3",
"gifsicle-stream": "^1.0.0",
"magicpen": "^6.0.2",
"magicpen-prism": "^5.0.0",
"mocha": "^8.3.0",
"nyc": "^15.0.0",
"prettier": "~2.2.0",
"sinon": "^10.0.0",
"svgfilter": "^4.0.0",
"unexpected": "^12.0.0",
"unexpected-express": "^13.0.1",
"unexpected-http": "^8.0.1",
"unexpected-image": "^4.0.0",
"unexpected-resemble": "^5.0.0",
"unexpected-sinon": "^11.0.0"
},
"scripts": {
"docker:build": "docker build -t express-processimage-dev .",
"docker": "docker run --rm -it -v \"$(pwd):/home/nvm/express-processimage\" express-processimage-dev",
"lint": "eslint . && prettier --check '**/*.{js,md}'",
"test": "mocha",
"test:ci": "npm run coverage",
"coverage": "NODE_ENV=development nyc --reporter=lcov --reporter=text --all -- npm test && echo google-chrome coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git://github.com/papandreou/express-processimage.git"
},
"keywords": [
"express",
"middleware",
"image",
"images",
"png",
"jpg",
"jpeg",
"resize",
"scale",
"graphicsmagick",
"optipng",
"pngcrush",
"pngquant",
"jpegtran"
],
"author": "Andreas Lind <[email protected]>",
"license": "BSD-3-Clause",
"nyc": {
"include": [
"lib/**"
]
}
}