forked from nodeca/pica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 962 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
{
"name": "pica",
"description": "High quality image resize in browser.",
"version": "4.1.1",
"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": [
"es2015"
]
}
]
]
},
"dependencies": {
"inherits": "^2.0.3",
"multimath": "^1.0.3",
"object-assign": "^4.1.1",
"webworkify": "^1.3.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"benchmark": "^2.1.0",
"browserify": "^14.4.0",
"canvas": "^1.3.16",
"eslint": "^3.7.0",
"mocha": "^3.1.0",
"pixelmatch": "^4.0.2",
"uglify-js": "^3.0.24"
}
}