-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 930 Bytes
/
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
{
"name": "postcss-rgba-hex",
"version": "0.3.7",
"description": "PostCSS plugin that replaces RGB(a) values with hexadecimal analogues",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"color",
"rgb",
"rgba",
"hex",
"postprocessor"
],
"author": "Evgeny Khoroshilov <[email protected]> (https://github.com/XOP)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/XOP/postcss-rgba-hex.git"
},
"bugs": {
"url": "https://github.com/XOP/postcss-rgba-hex/issues"
},
"homepage": "https://github.com/XOP/postcss-rgba-hex",
"dependencies": {
"object-assign": "^4.1.0",
"postcss": "^5.0.10",
"rgb2hex": "^0.1.0"
},
"devDependencies": {
"eslint": "^1.7.3",
"eslint-config-xop": "^1.0.1",
"tape": "^4.2.2"
},
"scripts": {
"test": "node tests",
"lint": "eslint . --ignore-path .gitignore"
}
}