-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 968 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
{
"name": "imgtowebp",
"version": "1.0.0",
"description": "converts a folder of images to .webp",
"main": "lib/index.js",
"scripts": {
"convert": "node ./lib/index.js",
"convert:build": "npm run build && node ./lib/index.js",
"init": "npm run build && node ./lib/init.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/.bin/tslint -p tsconfig.json && ./node_modules/.bin/tsc"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/VGVentures/imgToWebp.git"
},
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/VGVentures/imgToWebp/issues"
},
"homepage": "https://github.com/VGVentures/imgToWebp#readme",
"dependencies": {
"sharp": "^0.30.5"
},
"devDependencies": {
"@types/node": "^10.12.10",
"@types/sharp": "^0.21.0",
"prettier": "^1.15.2",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
}
}