-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.3 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
50
51
52
53
{
"name": "postcss-color-hsla-fallback",
"version": "1.0.0",
"license": "MIT",
"author": "Bogdan Lazar",
"description": "PostCSS plugin to transform hsl() and hsla() to hexadecimal",
"engines": {
"node": ">= 12",
"npm": ">= 6"
},
"repository": {
"type": "git",
"url": "https://github.com/tricinel/postcss-color-hsla-fallback.git"
},
"bugs": {
"url": "https://github.com/tricinel/postcss-color-hsla-fallback/issues"
},
"homepage": "https://github.com/tricinel/postcss-color-hsla-fallback#readme",
"keywords": [
"css",
"postcss",
"postcss-plugin",
"hsl",
"hsla",
"color",
"color-convert",
"hexadecimal"
],
"main": "index.js",
"scripts": {
"lint": "eslint index.js __tests__/**/*.js",
"test": "jest",
"format": "prettier --write index.js __tests__/**/*.js",
"prepublishOnly": "yarn lint && yarn test"
},
"devDependencies": {
"css-white-space": "^1.0.6",
"eslint": "^7.22.0",
"eslint-config-frontwerk": "^1.1.2",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"jest": "^26.6.3",
"postcss": "^8.2.8",
"prettier": "^2.2.1"
},
"peerDependencies": {
"postcss": "^8.2.8"
},
"dependencies": {
"postcss-value-parser": "^4.1.0"
}
}