-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
70 lines (70 loc) · 1.97 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
{
"name": "image-resizing",
"version": "0.1.3",
"description": "Node.js backend (middleware) for image manipulation needs (transform, resize, optimize).",
"keywords": [
"cloud functions",
"cloudinary",
"crop",
"express",
"gcp",
"google cloud functions",
"google cloud",
"image",
"images",
"middleware",
"optimize",
"resize",
"resizing",
"transform"
],
"license": "MIT",
"bugs": "https://github.com/kriasoft/image-resizing/issues",
"repository": "github:kriasoft/image-resizing",
"type": "commonjs",
"author": "Kriasoft (https://github.com/kriasoft)",
"contributors": [
"Konstantin Tarkus <[email protected]> (https://github.com/koistya)"
],
"files": [
"lib"
],
"main": "lib/main.js",
"types": "lib/main.d.ts",
"scripts": {
"test": "jest --env=node",
"build": "babel --env-name=production --source-maps --out-dir ./lib --verbose --delete-dir-on-start --extensions \".ts\" ./src && tsc --emitDeclarationOnly && yarn pack"
},
"dependencies": {
"@google-cloud/storage": "^5.8.2",
"@types/express": "^4.17.11",
"gm": "^1.23.1"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/preset-typescript": "^7.13.0",
"@types/gm": "^1.18.9",
"@types/jest": "^26.0.22",
"@types/jest-image-snapshot": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"@yarnpkg/pnpify": "^2.4.0",
"babel-jest": "^26.6.3",
"cross-spawn": "^7.0.3",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"express": "^4.17.1",
"jest": "^26.6.3",
"jest-image-snapshot": "^4.4.0",
"prettier": "^2.2.1",
"typescript": "^4.2.3"
},
"engines": {
"node": ">=12"
}
}