-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.62 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
52
53
54
55
56
57
{
"name": "squoosh-compress",
"version": "1.0.1",
"description": "compress image use squoosh",
"main": "dist/index.cjs.js",
"browser": "dist/index.esm.js",
"scripts": {
"serve": "cross-env NODE_ENV=development rollup -c -w",
"build": "rimraf dist/* && cross-env NODE_ENV=production rollup -c",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build",
"version": "git add -A lib",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ElonXun/squoosh-compress.git"
},
"keywords": [
"squoosh",
"compress",
"image",
"react",
"vue",
"js"
],
"author": "elonxu",
"license": "ISC",
"bugs": {
"url": "https://github.com/ElonXun/squoosh-compress/issues"
},
"homepage": "https://github.com/ElonXun/squoosh-compress#readme",
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"cross-env": "^7.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.26.4",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-livereload": "^1.3.0",
"rollup-plugin-serve": "^1.0.3",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.27.2",
"rollup-plugin-uglify": "^6.0.4",
"typescript": "^3.9.7"
},
"files": [
"dist/**/*"
]
}