-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
100 lines (100 loc) · 2.65 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "express-sharp",
"version": "4.2.41",
"description": "Real-time image processing for your express application",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"class-validator": "^0.13.1",
"cors": "^2.8.5",
"debug": "^4.3.2",
"dotenv": "^10.0.0",
"etag": "^1.8.1",
"keyv": "^4.0.3",
"reflect-metadata": "^0.1.13",
"sharp": "^0.30.0",
"tsyringe": "^4.6.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@heise/eslint-config": "^19.0.13",
"@keyv/redis": "^2.1.3",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^9.0.1",
"@semantic-release/git": "^10.0.0",
"@semantic-release/npm": "^9.0.0",
"@semantic-release/release-notes-generator": "^10.0.2",
"@types/cache-manager": "^4.0.0",
"@types/cors": "^2.8.12",
"@types/debug": "^4.1.7",
"@types/etag": "^1.8.1",
"@types/express": "^4.17.13",
"@types/got": "^9.6.12",
"@types/jest": "^27.0.2",
"@types/keyv": "^3.1.3",
"@types/node": "^14.17.27",
"@types/sharp": "^0.30.0",
"@types/supertest": "^2.0.11",
"aws-sdk": "^2.1009.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"express": "^4.17.1",
"got": "^11.8.2",
"husky": "^8.0.0",
"jest": "^27.3.0",
"lint-staged": "^13.0.0",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"pug": "^3.0.2",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.0",
"supertest": "^6.1.6",
"ts-jest": "^27.0.7",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
},
"peerDependencies": {
"aws-sdk": "^2.713.0",
"express": "^4.0.0",
"got": "^11.5.0"
},
"peerDependenciesMeta": {
"aws-sdk": {
"optional": true
},
"got": {
"optional": true
}
},
"scripts": {
"build:test": "tsc --noEmit",
"build": "tsc --build tsconfig.build.json",
"prebuild": "yarn clean",
"clean": "rimraf dist",
"start:example": "DEBUG=express-sharp* nodemon --exec 'node -r ts-node/register' -w . --inspect example/app.ts",
"lint": "eslint --cache .",
"test": "jest",
"ci:test": "jest --coverage",
"prepare": "husky install"
},
"engines": {
"node": ">= 12.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pmb0/express-sharp.git"
},
"keywords": [
"express",
"sharp",
"image",
"scale"
],
"author": "Philipp Busse",
"license": "MIT",
"bugs": {
"url": "https://github.com/pmb0/express-sharp/issues"
},
"homepage": "https://github.com/pmb0/express-sharp#readme"
}