-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 939 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
40
41
{
"name": "postcss-color-rgb",
"version": "0.1.1",
"description": "PostCSS plugin to transform new RGB functions syntaxes to compatible CSS",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"color",
"rgb"
],
"author": "Xavier Zalawa <xavier@7studio.fr>",
"license": "MIT",
"repository": "7studio/postcss-color-rgb",
"bugs": {
"url": "https://github.com/7studio/postcss-color-rgb/issues"
},
"homepage": "https://github.com/7studio/postcss-color-rgb",
"dependencies": {
"postcss": "^5.2.6",
"postcss-message-helpers": "^2.0.0",
"reduce-function-call": "^1.0.2"
},
"devDependencies": {
"eslint": "^3.12.2",
"eslint-config-postcss": "^2.0.2",
"jest": "^18.0.0"
},
"scripts": {
"test": "jest && eslint *.js"
},
"jest": {
"verbose": true
},
"eslintConfig": {
"extends": "eslint-config-postcss/es5",
"env": {
"jest": true
}
}
}