-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
49 lines (49 loc) · 1.5 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
{
"name": "blitz-resize",
"version": "0.4.0",
"description": "Most versatile, powerful, and fastest way to resize an image. Fast, non-blocking (does not freeze windows), and async/await/promise compatible.",
"main": "index.js",
"browser": "dist/blitz.min.js",
"scripts": {
"test": "mocha './tests/' --recursive --exit -r esm",
"browserify": "browserify src/index.js > dist/blitz.js --standalone Blitz --global-transform [ babelify --configFile ./.dist.babelrc ]",
"browserify:minify": "browserify src/index.js > dist/blitz.min.js --standalone Blitz --global-transform [ babelify --configFile ./.dist.babelrc ] -p tinyify",
"build": "npm run browserify && npm run browserify:minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calvintwr/blitz-hermite-resize.git"
},
"keywords": [
"resize",
"image",
"compression",
"imageresizer",
"imagemagick",
"graphicsmagick"
],
"author": "calvintwr",
"license": "MIT",
"bugs": {
"url": "https://github.com/calvintwr/blitz-hermite-resize/issues"
},
"homepage": "https://github.com/calvintwr/blitz-hermite-resize#readme",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"babelify": "^10.0.0",
"browserify": "^16.5.1",
"chai": "^4.2.0",
"esm": "^3.2.25",
"mocha": "^8.0.1",
"mocha-sinon": "^2.1.2",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"tinyify": "^2.5.2"
},
"files": [
"index.js",
"src",
"dist"
]
}