forked from svg-utils/svgo-ll
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.25 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.25 KB
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
81
82
83
84
85
86
87
88
89
{
"name": "svgo-ll",
"packageManager": "npm@11.7.0",
"version": "6.4.0-alpha.1",
"description": "svgo-ll is a Node.js library and command-line application for optimizing SVG images.",
"license": "MIT",
"type": "module",
"homepage": "https://github.com/svg-utils/svgo-ll#readme",
"repository": {
"type": "git",
"url": "https://github.com/svg-utils/svgo-ll"
},
"main": "./lib/svgo.js",
"bin": "./bin/svgo.js",
"types": "./lib/svgo-node.d.ts",
"exports": {
".": {
"import": "./lib/svgo.js",
"types": "./lib/svgo.d.ts"
}
},
"typesVersions": {
"*": {
".": [
"./lib/svgo-node.d.ts"
],
"browser": [
"./lib/svgo.d.ts"
]
}
},
"files": [
"bin",
"lib",
"plugins",
"!**/*.test.js"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"typecheck": "tsc",
"lint": "eslint . && prettier --check .",
"fix": "eslint --fix . && prettier --write .",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --maxWorkers=4 --coverage --coverageDirectory ./ignored/coverage",
"regress": "cross-env NO_DIFF=1 node ./test/regression.js -i ./test/fixtures/files && cross-env NO_DIFF=1 node ./test/regression.js --enable round -i ./test/fixtures/files",
"qa": "npm run typecheck && npm run lint && npm run test && npm run regress"
},
"jest": {
"coveragePathIgnorePatterns": [
"fixtures"
],
"coverageReporters": [
"html",
"lcov",
"text"
]
},
"dependencies": {
"commander": "^14.0.2",
"css-select": "^6.0.0",
"css-tree": "^3.1.0",
"csso": "^5.0.5",
"image-size": "^2.0.2",
"picocolors": "^1.1.1",
"sax": "^1.4.4"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/csso": "^5.0.4",
"@types/image-size": "^0.7.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.9",
"@types/pixelmatch": "^5.2.6",
"@types/pngjs": "^6.0.5",
"@types/sax": "^1.2.7",
"@types/tar-stream": "^3.1.4",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"globals": "^17.0.0",
"jest": "^30.2.0",
"pixelmatch": "^7.1.0",
"playwright": "^1.57.0",
"pngjs": "^7.0.0",
"prettier": "^3.8.1",
"tar-stream": "^3.1.7",
"typescript": "^5.9.3"
}
}