-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.17 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.17 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
{
"name": "webpack-svgstore",
"version": "0.0.0-development",
"description": "Svgstore plugin for Webpack 5",
"main": "dist/svgstore.js",
"engines": {
"node": ">= 18.0.0"
},
"scripts": {
"example": "npm run build && webpack --progress --color",
"build": "tsc",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"author": "David Bergmann",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/davidbepa/webpack-svgstore"
},
"peerDependencies": {
"webpack": "^5.0.0"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"globby": "^11.0.3",
"schema-utils": "^4.0.0",
"svgo": "^2.8.0"
},
"devDependencies": {
"@types/svgo": "^2.6.4",
"@types/webpack": "^5.28.0",
"cz-conventional-changelog": "^3.3.0",
"semantic-release": "^19.0.5",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"keywords": [
"webpack",
"webpack-plugin",
"svg",
"svgo",
"svgstore"
],
"release": {
"branches": [
"main"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}