-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 984 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
{
"name": "svgfit",
"description": "Stand alone, renders then saves svg files to their exact bounds",
"version": "2.1.1",
"homepage": "https://github.com/mikemellor11/svgfit",
"author": {
"name": "Michael Mellor",
"email": "mikemellor11@hotmail.com"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/mikemellor11/svgfit.git"
},
"bugs": {
"url": "https://github.com/mikemellor11/svgfit/issues"
},
"license": "MIT",
"engines": {
"node": ">= 16"
},
"scripts": {
"test": "mocha --timeout=240s --exit",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"husky": "^8.0.3",
"mocha": "^10.2.0"
},
"files": [
"index.js",
"README.md",
"LICENSE",
"package.json"
],
"keywords": [],
"main": "index.js",
"dependencies": {
"fs-extra": "^11.1.0",
"puppeteer": "^19.6.1"
}
}