-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "@mathrix-education/sharp-function",
"version": "0.1.0",
"description": "Compress images using sharp",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "eslint",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "NODE_ENV=CI jest --ci --runInBand --coverage"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/mathrix-education/sharp-function.git"
},
"keywords": [
"functions",
"sharp",
"google-cloud-storage"
],
"author": "Mathieu Bour <mathieu@mathrix.fr>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mathrix-education/sharp-function/issues"
},
"homepage": "https://github.com/mathrix-education/sharp-function#readme",
"dependencies": {
"@google-cloud/storage": "^4.1.3",
"@sentry/integrations": "^5.8.0",
"@sentry/node": "^5.9.0",
"sharp": "^0.23.3"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "^12.12.14",
"@types/sharp": "^0.23.0",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"eslint": "^6.7.2",
"jest": "^24.9.0",
"ts-jest": "^24.2.0",
"typescript": "^3.7.2"
}
}