This repository was archived by the owner on Oct 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.34 KB
/
package.json
File metadata and controls
52 lines (52 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
{
"name": "@block65/imgproxy",
"version": "1.0.2",
"description": "NodeJS pure ESM client library to generate imgproxy urls",
"keywords": [
"imgproxy",
"url",
"generation",
"client"
],
"homepage": "https://github.com/block65/imgproxy-node#readme",
"bugs": {
"url": "https://github.com/block65/imgproxy-node/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/block65/imgproxy-node.git"
},
"license": "MIT",
"author": "Koen Punt <koen@unitedwardrobe.com>",
"type": "module",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"build:watch": "yarn build -w",
"prepublish": "yarn build",
"lint": "eslint .",
"test": "NODE_OPTIONS=\"--experimental-vm-modules --experimental-specifier-resolution=node\" jest"
},
"devDependencies": {
"@babel/preset-env": "^7.14.4",
"@babel/preset-typescript": "^7.13.0",
"@block65/eslint-config": "4.2.1",
"@jest/globals": "^27.0.1",
"@types/node": "^15.6.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"eslint": "^7.27.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.1",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"typescript": "^4.3.2"
},
"engines": {
"node": ">=15.14"
}
}