forked from nodeca/pica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 999 Bytes
/
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
{
"name": "pica",
"description": "High quality image resize in browser.",
"version": "5.0.0",
"keywords": [
"resize",
"scale",
"image",
"lanczos",
"canvas"
],
"homepage": "https://github.com/nodeca/pica",
"license": "MIT",
"repository": "nodeca/pica",
"scripts": {
"test": "make test"
},
"files": [
"dist/",
"lib/",
"index.js"
],
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env"
]
}
]
]
},
"dependencies": {
"inherits": "^2.0.3",
"multimath": "^1.0.3",
"object-assign": "^4.1.1",
"webworkify": "^1.5.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babelify": "^10.0.0",
"benchmark": "^2.1.0",
"browserify": "^16.2.3",
"canvas": "^2.0.0",
"eslint": "^5.7.0",
"mocha": "^5.2.0",
"pixelmatch": "^4.0.2",
"uglify-js": "^3.0.24"
}
}