This repository was archived by the owner on Apr 16, 2020. It is now read-only.
forked from pmb0/express-sharp
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 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
{
"name": "@magento/express-sharp",
"publishConfig": {
"access": "public"
},
"version": "3.0.0",
"description": "Real-time image processing for your express application",
"main": "index.js",
"dependencies": {
"accepts": "^1.3.7",
"cors": "^2.8.4",
"debug": "^3.1.0",
"etag": "^1.8.1",
"express": "^4.16.2",
"express-validator": "^4.2.1",
"request": "^2.83.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"eslint": "^4.9.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^4.0.1",
"node-fetch": "^2.6.0",
"nyc": "^13.1.0",
"sharp": "^0.21.2",
"should": "^13.1.2",
"supertest": "^3.0.0"
},
"peerDependencies": {
"sharp": "^0.21.2"
},
"scripts": {
"test": "eslint index.js lib test && nyc mocha --reporter spec --check-leaks test/ --exit",
"test-ci": "nyc mocha --report lcovonly --reporter spec --check-leaks test/express-sharp.js --exit",
"test-tap": "mocha --reporter tap --check-leaks test/"
},
"engines": {
"node": ">= 8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/magento-research/express-sharp.git"
},
"keywords": [
"express",
"sharp",
"image",
"scale"
],
"author": "Philipp Busse",
"license": "MIT",
"bugs": {
"url": "https://github.com/magento-research/express-sharp/issues"
},
"homepage": "https://github.com/magento-research/express-sharp#readme"
}