-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.83 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
{
"name": "express-imagemin-proxy",
"version": "1.3.0",
"description": "An express middleware to optimize images from a backend, with resizing and converting",
"main": "src/index.js",
"keywords": [
"express",
"middleware",
"imagemin",
"image",
"minification",
"imagemagick",
"graphicsmagick",
"resize",
"convert"
],
"repository": "https://github.com/tprobinson/express-imagemin-proxy.git",
"bugs": {
"url": "https://github.com/tprobinson/express-imagemin-proxy.git/issues"
},
"homepage": "https://github.com/tprobinson/express-imagemin-proxy#readme",
"license": "MIT",
"author": {
"name": "Trevor Robinson",
"url": "https://keybase.io/tpr"
},
"scripts": {
"lint": "eslint src/ test/ __mocks__/",
"test": "yarn run lint && jest --maxWorkers=4",
"test:coveralls": "yarn run test --coverage --coverageReporters=text-lcov | yarn exec coveralls",
"doc": "esdoc",
"docdev": "esdoc && serve -s docs"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
]
},
"devDependencies": {
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"coveralls": "^3.0.2",
"eslint": "^5.2.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.21.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"express": "^4.16.3",
"imagemin-gifsicle": "^5.2.0",
"imagemin-jpegoptim": "^5.2.0",
"imagemin-pngquant": "^6.0.0",
"imagemin-svgo": "^7.0.0",
"jest": "^23.5.0",
"supertest": "^3.1.0"
},
"dependencies": {
"imagemin": "^6.1.0",
"imagemin-gm": "^2.0.0",
"mime": "^2.3.1",
"node-fetch": "^2.2.0"
},
"optionalDependencies": {
"file-type": "^9.0.0"
}
}