-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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
{
"name": "tinypng-go",
"version": "0.0.10",
"description": "A cli tool to compress image quickly",
"main": "dist/index.js",
"bin": "dist/index.js",
"scripts": {
"dev": "rimraf ./dist && tsc -w --sourceMap",
"debug": "./dist/index.js ./images -o images_out -m 20",
"test": "jest --collectCoverage",
"build": "rimraf ./dist && tsc",
"release": "npm version patch",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/fs-extra": "^9.0.11",
"@types/jest": "^26.0.23",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"typescript": "^4.2.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaluik/tinypng-go.git"
},
"author": "jaluik",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaluik/tinypng-go/issues"
},
"homepage": "https://github.com/jaluik/tinypng-go#readme",
"files": [
"dist/",
"src/"
],
"dependencies": {
"chalk": "^4.1.1",
"commander": "^7.2.0",
"fs-extra": "^10.0.0",
"progress": "^2.0.3"
},
"keywords": [
"tinypng",
"compress images",
"cli"
]
}