-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
49 lines (49 loc) · 1.18 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
{
"name": "postcss-color-gray",
"version": "5.0.0",
"description": "Use the gray() color function in CSS",
"author": "Shinnosuke Watanabe (https://github.com/shinnn)",
"license": "ISC",
"repository": "postcss/postcss-color-gray",
"homepage": "https://github.com/postcss/postcss-color-gray#readme",
"bugs": "https://github.com/postcss/postcss-color-gray/issues",
"main": "index.js",
"scripts": {
"prepublishOnly": "npm test",
"test": "echo 'Running tests...'; npm run test:js && npm run test:tape",
"test:js": "eslint *.js --cache --ignore-path .gitignore --quiet",
"test:tape": "postcss-tape"
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@csstools/convert-colors": "^2.0.0",
"postcss-values-parser": "^5.0.0"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"devDependencies": {
"postcss": "^8.2.8",
"eslint": "^7.22.0",
"eslint-config-dev": "^2.0.0",
"postcss-tape": "^6.0.0"
},
"eslintConfig": {
"extends": "dev"
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"gray",
"color",
"lab",
"transform",
"function",
"csswg",
"w3c",
"specification"
]
}