package.json
973 Bytes
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
{
"name": "postcss-color-rebeccapurple",
"version": "4.0.1",
"description": "PostCSS plugin to transform W3C CSS rebeccapurple color to more compatible CSS (rgb())",
"keywords": [
"css",
"postcss",
"postcss-plugin",
"color",
"colour",
"rgb",
"rebeccapurple"
],
"author": "Maxime Thirouin",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/postcss/postcss-color-rebeccapurple.git"
},
"files": [
"index.js"
],
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"postcss": "^7.0.2",
"postcss-values-parser": "^2.0.0"
},
"devDependencies": {
"jscs": "^3.0.7",
"jshint": "^2.9.6",
"npmpub": "^4.1.0",
"tape": "^4.9.1"
},
"scripts": {
"lint": "npm run jscs && npm run jshint",
"jscs": "jscs index.js test/index.js",
"jshint": "jshint . --exclude-path .gitignore",
"test": "npm run lint && tape test",
"release": "npmpub"
}
}