forked from postcss/postcss-color-function
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 942 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 942 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
{
"name": "postcss-color-function",
"version": "4.1.0",
"description": "PostCSS plugin to transform W3C CSS color function to more compatible CSS.",
"keywords": [
"css",
"postcss",
"postcss-plugin",
"color",
"colour",
"function"
],
"author": "Maxime Thirouin",
"license": "MIT",
"repository": "https://github.com/postcss/postcss-color-function.git",
"files": [
"index.js"
],
"dependencies": {
"css-color-function": "~1.3.3",
"postcss-message-helpers": "^2.0.0",
"postcss-value-parser": "^4.1.0"
},
"devDependencies": {
"eslint": "^7.26.0",
"faucet": "0.0.1",
"npmpub": "^5.0.0",
"postcss": "^8.2.15",
"tape": "^5.2.2"
},
"peerDependencies": {
"postcss": "^8.2.15"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"lint": "eslint *.js index.js ./test/",
"test": "npm run lint && tape test | faucet",
"release": "npmpub"
}
}