forked from Vortexmind/image-resizing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 835 Bytes
/
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
{
"private": true,
"name": "image-resizing",
"version": "1.0.0",
"description": "Image resizing via Cloudflare Worker resizing API",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"lint": "eslint --fix . && echo 'Lint complete.'"
},
"jest": {
"collectCoverageFrom": [
"index.js",
"src/*.js"
]
},
"author": "Paolo Tagliaferri <me@paolotagliaferri.com>",
"license": "MIT",
"devDependencies": {
"eslint": "8.9.0",
"eslint-config-prettier": "8.4.0",
"eslint-plugin-markdown": "2.2.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-yaml": "0.5.0",
"fetch-headers": "3.0.1",
"jest": "27.5.1",
"prettier": "2.5.1",
"ansi-regex": "6.0.1"
},
"dependencies": {
"kind-of": "6.0.3",
"npm": "8.5.1",
"toucan-js": "2.5.0"
}
}