forked from Donaldcwl/browser-image-compression
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.75 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
58
59
60
61
62
63
{
"name": "browser-image-compression",
"version": "0.0.3",
"description": "Compress images in the browser",
"main": "dist/browser-image-compression.js",
"module": "dist/browser-image-compression.mjs",
"jsnext:main": "dist/browser-image-compression.mjs",
"scripts": {
"eslint": "eslint lib test",
"build": "rollup -c --environment BUILD:production",
"watch": "rollup -c -w",
"pretest": "npm run build",
"test": "NODE_ENV=test nyc mocha",
"prepublish": "npm test"
},
"homepage": "https://github.com/Donaldcwl/browser-image-compression#readme",
"repository": {
"type": "git",
"url": "https://github.com/Donaldcwl/browser-image-compression"
},
"bugs": {
"url": "https://github.com/Donaldcwl/browser-image-compression/issues"
},
"keywords": [
"image compression",
"browser",
"image processing",
"reduce resolution",
"reduce size"
],
"author": "Donald <[email protected]>",
"license": "MIT",
"files": [
"lib",
"dist"
],
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-plugin-external-helpers": "^6.18.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.18.0",
"babelrc-rollup": "^3.0.0",
"canvas-prebuilt": "^1.6.5-prerelease.1",
"chai": "^4.1.0",
"eslint": "^4.1.1",
"file-api": "^0.10.4",
"istanbul": "^0.4.5",
"jsdom": "^12.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^3.2.0",
"nyc": "^11.0.3",
"rollup": "^0.45.2",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-istanbul": "^1.1.0",
"rollup-plugin-nodent": "^0.1.0",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^4.0.0",
"uglify-es": "^3.0.25"
},
"dependencies": {}
}