forked from TrySound/postcss-inline-svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.45 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "postcss-inline-svg",
"version": "3.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": "dist/postcss-inline-svg.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"pretest": "rollup -c",
"test": "jest --coverage",
"posttest": "eslint src test"
},
"jest": {
"coverageDirectory": "coverage"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": 4
},
"modules": false
}
]
]
},
"eslintConfig": {
"extends": "postcss",
"rules": {
"quotes": [
0
],
"max-len": [
0
]
}
},
"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": "^1.2.0",
"dom-serializer": "^0.1.0",
"htmlparser2": "^3.9.0",
"postcss": "^6.0.1",
"postcss-value-parser": "^3.2.3"
},
"devDependencies": {
"babel-preset-env": "^1.4.0",
"eslint": "^3.4.0",
"eslint-config-postcss": "^2.0.0",
"jest": "^20.0.1",
"rollup": "^0.34.10",
"rollup-plugin-babel": "^2.7.1"
}
}