-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.55 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@andreekeberg/imagedata",
"version": "1.0.2",
"description": "Unified method of retrieving an ImageData instance from an image, in both the browser and Node.js, asynchronously or synchronously",
"main": "lib/node.js",
"module": "lib/node.js",
"browser": "lib/browser.js",
"scripts": {
"test": "mocha --require @babel/register --require @babel/core --recursive",
"lint": "eslint src test lib/node.js",
"build": "webpack --mode=production --no-progress --hide-modules --config=webpack.config.js",
"prepublish": "npm run lint && npm run test && npm run build"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/andreekeberg/imagedata.git"
},
"keywords": [
"image-data",
"imagedata",
"image",
"data",
"canvas",
"getimagedata",
"drawimage",
"ctx",
"node",
"browser",
"polyfill",
"callback",
"asynchronous",
"asynchronously",
"synchronous",
"synchronously"
],
"author": "André Ekeberg <[email protected]> (https://andreekeberg.se)",
"license": "MIT",
"bugs": {
"url": "https://github.com/andreekeberg/imagedata/issues"
},
"homepage": "https://github.com/andreekeberg/imagedata",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-modules-amd": "^7.10.5",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/polyfill": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"@babel/runtime": "^7.11.2",
"@babel/runtime-corejs3": "^7.11.2",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-minify": "^0.5.0",
"babel-runtime": "^6.26.0",
"chai": "^4.1.2",
"core-js": "^3.6.5",
"cross-env": "^5.2.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-node": "^11.1.0",
"mocha": "^6.1.3",
"rimraf": "^2.6.2",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9"
},
"dependencies": {
"@jorgeferrero/stream-to-buffer": "^1.0.0",
"jimp": "^0.16.1",
"mime-kind": "^3.0.0"
}
}