-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.78 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
{
"name": "imgproxyjs",
"version": "1.7.0",
"description": "ImgProxy javascript client for node/browser",
"main": "dist/index.js",
"type": "commonjs",
"browser": "dist/index.browser.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/GNURub/imgproxyjs#readme",
"repository": {
"type": "git",
"url": "https://github.com/GNURub/imgproxyjs.git"
},
"keywords": [
"imgproxy",
"imgproxyjs",
"image"
],
"author": {
"name": "Rubén Cid Lara",
"email": "[email protected]"
},
"scripts": {
"lint": "eslint './src/**/*.{js,ts,tsx}'",
"lint:fix": "eslint './src/**/*.{js,ts,tsx}' --fix",
"test": "npm run build && jest --passWithNoTests",
"test:watch": "npm run build && jest --watchAll",
"build": "webpack && esbuild src/index.ts --bundle --platform=node --target=esnext --outdir=./dist",
"watch": "webpack -w",
"start": "npm run build && npm link",
"semantic-release": "semantic-release",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"buffer": "^6.0.3",
"clean-webpack-plugin": "^4.0.0",
"create-hmac": "^1.1.7",
"crypto-browserify": "^3.12.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"prettier": "^3.0.0",
"semantic-release": "^21.0.7",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"files": [
"dist/**/*",
"package.json"
],
"license": "MIT",
"dependencies": {
"esbuild": "^0.18.17"
}
}