-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "crop-node",
"version": "2.1.2",
"description": "Crop transparent pixel from image in Node.js",
"keywords": [
"trim",
"image",
"edge",
"cut",
"resize",
"transparent",
"opacity",
"pixel",
"remove"
],
"main": "index.js",
"type": "module",
"scripts": {
"lint": "eslint index.js",
"test": "ava"
},
"eslintConfig": {
"extends": "@gmartigny/eslint-config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GMartigny/crop-node.git"
},
"author": "GMartigny",
"license": "MIT",
"bugs": {
"url": "https://github.com/GMartigny/crop-node/issues"
},
"homepage": "https://github.com/GMartigny/crop-node#readme",
"funding": "https://github.com/GMartigny/crop-node?sponsor=1",
"devDependencies": {
"@gmartigny/eslint-config": "^2.2.0",
"ava": "^6.1.3",
"eslint": "^8.57.0"
},
"dependencies": {
"canvas": "^2.11.2",
"crop-universal": "^1.0.0"
}
}