-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.94 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
{
"name": "lup-images",
"version": "1.2.4",
"description": "Optimizes images for web applications",
"files": [
"image/**/*",
"ImageConverter*.*",
"ImageRequestHandler*.*",
"ImageStorage*.*",
"index*.*",
"OptimizerSettings*.*"
],
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest --config jest.config.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LupCode/node-lup-images.git"
},
"keywords": [
"node",
"module",
"images",
"lup-images",
"optimization",
"seo",
"image optimization"
],
"author": "LupCode.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/LupCode/node-lup-images/issues"
},
"homepage": "https://github.com/LupCode/node-lup-images#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"lup-root": "^1.3.10",
"sharp": "^0.33.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.7",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3",
"typescript-eslint": "^0.0.1-alpha.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}