-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.66 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
{
"name": "svgo-cli",
"version": "2.8.0-1",
"description": "CLI bundle of SVGO, a tool for optimizing SVG vector graphics files",
"license": "MIT",
"keywords": [
"cli",
"svgo",
"svg",
"optimize",
"minify"
],
"homepage": "https://github.com/thachnn/svgo-cli",
"author": "Thach Nguyen (https://github.com/thachnn)",
"repository": {
"type": "git",
"url": "git://github.com/thachnn/svgo-cli.git"
},
"main": "dist/index.js",
"types": "dist/types.d.ts",
"bin": {
"svgo": "dist/cli.js"
},
"files": [
"dist/",
"!webpack*.js"
],
"engines": {
"node": ">=8.3"
},
"dependencies": {
"v8-compile-cache": "2"
},
"scripts": {
"build": "node node_modules/webpack-cli/bin/cli.js --progress",
"clean": "node node_modules/rimraf/bin.js dist/ node_modules/.cache"
},
"devDependencies": {
"@babel/core": "thachnn/webpack-bundle#_babel/core-7.17.10",
"@babel/preset-env": "thachnn/webpack-bundle#_babel/preset-env-7.17.10",
"@babel/preset-typescript": "thachnn/webpack-bundle#_babel/preset-typescript-7.16.7",
"babel-loader": "thachnn/webpack-bundle#babel-loader-8.2.5",
"rimraf": "^2.2.8",
"svgo": "^2.8.0",
"webpack": "thachnn/webpack-bundle#v5.74.0",
"webpack-cli": "thachnn/webpack-bundle#cli-4.10.0"
},
"resolutions": {
"css-select": "fb55/css-select#v4.1.3",
"css-what": "fb55/css-what#v5.1.0",
"dom-serializer": "cheeriojs/dom-serializer#v1.3.2",
"domelementtype": "fb55/domelementtype#v2.2.0",
"domhandler": "fb55/domhandler#v4.2.2",
"domutils": "fb55/domutils#v2.8.0",
"entities": "fb55/entities#v2.2.0",
"nth-check": "fb55/nth-check#v2.0.1"
}
}