-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
executable file
·43 lines (43 loc) · 923 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
36
37
38
39
40
41
42
43
{
"name": "webp-converter",
"version": "2.3.3",
"description": "A small node.js library for converting any image to webp file format or converting webp image to any image file format.",
"main": "src/webpconverter.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "https://github.com/scionoftech/webp-converter.git"
},
"keywords": [
"webp",
"webpconverter",
"webp-converter",
"cwebp",
"dwebp",
"gif2webp",
"webpmux"
],
"files": [
"LICENSE",
"README.md",
"app.js",
"webpconverter.js",
"src/buffer_utils.js",
"src/temp_path.js",
"src/cwebp.js",
"src/dwebp.js",
"src/gwebp.js",
"src/webpmux.js",
"bin/",
"images/",
"temp/"
],
"dependencies": {
"uuid": "^8.3.2"
},
"author": "scionoftech",
"license": "MIT"
}