forked from TrySound/postcss-inline-svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.1 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
{
"name": "postcss-inline-svg",
"version": "5.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"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"author": "Bogdan Chadkin <trysound@yandex.ru>",
"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": "^4.3.0",
"dom-serializer": "^1.1.0",
"htmlparser2": "^5.0.1",
"postcss-value-parser": "^4.0.0"
},
"peerDependencies": {
"postcss": "^8.1.4"
},
"devDependencies": {
"husky": "^4.3.0",
"jest": "^26.6.1",
"lint-staged": "^10.5.0",
"postcss": "^8.1.4",
"prettier": "^2.1.2"
}
}