-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 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
{
"name": "trimpng",
"version": "1.1.0",
"description": "A TypeScript function to remove transparent pixels from the borders of images",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/benjiJanssens/trimpng.git"
},
"keywords": [
"image",
"transparent",
"trim",
"trimming",
"trimmer",
"dataurl",
"png"
],
"author": "Benjamin Janssens <benji.janssens@gmail.com> (https://benjijanssens.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/benjiJanssens/trimpng/issues",
"email": "benji.janssens@gmail.com"
},
"homepage": "https://github.com/benjiJanssens/trimpng#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"husky": "^4.3.8",
"prettier": "2.2.1",
"pretty-quick": "^3.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}