This repository was archived by the owner on Dec 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.34 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.34 KB
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
{
"name": "parse-cloud-image",
"version": "1.0.3",
"description": "Parse Server Cloud module for image manipulation using sharp",
"repository": {
"type": "git",
"url": "https://github.com/L3K0V/parse-cloud-image"
},
"main": "lib/main/index.js",
"typings": "lib/main/index.d.ts",
"module": "lib/module/index.js",
"scripts": {
"lint": "yarn eslint . --ext .ts",
"build": "tsc -p tsconfig.json && tsc -p tsconfig.module.json",
"release": "npm run build && np"
},
"homepage": "https://github.com/L3K0V/parse-cloud-image",
"bugs": "https://github.com/L3K0V/parse-cloud-image/issues",
"keywords": [
"parse",
"parse-server",
"parse-cloud",
"sharp",
"images",
"image-manipulation"
],
"author": "Asen Lekov",
"license": "MIT",
"devDependencies": {
"@types/express": "4.17.13",
"@types/mime": "2.0.3",
"@types/node": "16.11.43",
"@types/parse": "2.18.16",
"@types/sharp": "0.30.4",
"@typescript-eslint/eslint-plugin": "5.30.4",
"@typescript-eslint/parser": "5.30.4",
"eslint": "8.19.0",
"np": "7.6.2",
"parse": "3.4.3",
"typescript": "4.7.4"
},
"engines": {
"node": ">=14"
},
"files": [
"lib"
],
"dependencies": {
"mime": "^3.0.0",
"sharp": "^0.30.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}