-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
92 lines (92 loc) · 2.53 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
{
"name": "express-processimage",
"version": "11.2.0",
"description": "Express middleware that processes served images according to the query string",
"main": "lib/processImage.js",
"files": [
"bin",
"lib"
],
"dependencies": {
"accepts": "^1.3.8",
"animated-gif-detector": "^1.2.0",
"exif-reader": "^1.0.3",
"gm-papandreou": "^1.23.0-patch1",
"hijackresponse": "^5.0.0",
"httperrors": "^2.3.0",
"impro": "~0.14.1",
"inkscape": "^3.0.0",
"jpegtran": "^2.0.0",
"mime": "^3.0.0",
"optimist": "^0.6.1",
"optipng": "^4.0.0",
"passerror": "^1.1.1",
"pngcrush": "^3.0.0",
"pngquant": "^4.0.0",
"sharp": "^0.32.0"
},
"devDependencies": {
"browser-sync": "^3.0.2",
"compression": "^1.7.4",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-mocha": "^10.4.3",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"express": "^4.18.2",
"gifsicle": "^5.3.0",
"magicpen": "^6.2.4",
"magicpen-prism": "^5.0.1",
"memoizesync": "^1.1.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"offline-github-changelog": "^3.0.1",
"prettier": "~3.2.1",
"sinon": "^17.0.1",
"svgfilter": "^4.0.0",
"unexpected": "^12.0.5",
"unexpected-express": "^13.1.2",
"unexpected-http": "^9.0.0",
"unexpected-image": "^4.1.0",
"unexpected-sinon": "^11.1.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",
"coverage": "NODE_ENV=development nyc --reporter=lcov --reporter=text --all -- npm test && echo google-chrome coverage/lcov-report/index.html",
"version": "offline-github-changelog --next=${npm_new_version} > CHANGELOG.md && git add CHANGELOG.md"
},
"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 <andreaslindpetersen@gmail.com>",
"license": "BSD-3-Clause",
"nyc": {
"include": [
"lib/**"
]
}
}