-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
48 lines (48 loc) · 1.05 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
{
"name": "postcss-inline-svg",
"version": "6.0.0",
"description": "PostCSS plugin to reference an SVG file and control its attributes with CSS syntax",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"svg",
"inline"
],
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"test": "jest",
"prepare": "husky install"
},
"lint-staged": {
"*.js": [
"prettier --write"
]
},
"author": "Bogdan Chadkin <[email protected]>",
"license": "MIT",
"repository": "TrySound/postcss-inline-svg",
"bugs": {
"url": "https://github.com/TrySound/postcss-inline-svg/issues"
},
"homepage": "https://github.com/TrySound/postcss-inline-svg",
"dependencies": {
"css-select": "^5.1.0",
"dom-serializer": "^2.0.0",
"htmlparser2": "^8.0.1",
"postcss-value-parser": "^4.2.0"
},
"peerDependencies": {
"postcss": "^8.1.4"
},
"devDependencies": {
"husky": "^8.0.3",
"jest": "^29.4.2",
"lint-staged": "^13.1.1",
"postcss": "^8.4.21",
"prettier": "^2.8.4"
}
}