-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name": "@joyfulljs/imagemin",
"version": "1.0.2",
"description": "read file, resize/compress image with or without aspect ratio",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"scripts": {
"build": "tsc && rollup -c",
"test": "jest --reporter=lcov --coverage",
"coverage": "codecov --disable=gcov,search -f coverage/coverage-final.json",
"start": "http-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joyfulljs/imagemin.git"
},
"keywords": [
"image",
"imagemin",
"compress",
"resize"
],
"author": "elvin zhu",
"license": "MIT",
"bugs": {
"url": "https://github.com/joyfulljs/imagemin/issues"
},
"files": [
"dist/*.js",
"index.d.ts"
],
"homepage": "https://github.com/joyfulljs/imagemin#readme",
"sideEffects": false,
"typings": "./index.d.ts",
"devDependencies": {
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"canvas": "^2.6.1",
"jest": "^25.1.0",
"rollup": "^1.31.1",
"rollup-plugin-banner": "^0.2.1",
"rollup-plugin-terser": "^5.2.0",
"typescript": "^3.7.5"
}
}