-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.79 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "postcss-color-converter",
"version": "1.2.1",
"description": "Post CSS plugin for color conversion.",
"keywords": [
"postcss-plugin",
"color",
"converter"
],
"scripts": {
"test": "mocha ./test/*.test.js",
"lint": "eslint --config ./.eslintrc-full.js **/*.js --fix",
"postcss": "postcss ./test/fixtures/*.test.{css,scss} --config ./test/fixtures/postcss.config.js -r",
"pack": "npm pack",
"release": "npm login && npx clean-publish"
},
"author": "Eduard Trait <eduard2011rus@gmail.com> (https://github.com/EdMSL)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/EdMSL/postcss-color-converter.git"
},
"homepage": "https://github.com/EdMSL/postcss-color-converter#readme",
"bugs": {
"url": "https://github.com/EdMSL/postcss-color-converter/issues"
},
"dependencies": {
"colorizr": "^3.0.8",
"postcss-values-parser": "^6.0.2"
},
"devDependencies": {
"@logux/eslint-config": "55.2.1",
"chai": "4.5.0",
"clean-publish": "^4.0.0",
"eslint": "8.57.0",
"eslint-config-postcss": "4.0.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-es5": "^1.4.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^28.13.3",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prefer-let": "^1.0.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "50.0.0",
"mocha": "11.1.0",
"postcss": "^8.0.0",
"postcss-cli": "^8.3.1",
"postcss-scss": "^4.0.9"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"eslintConfig": {
"extends": "eslint-config-postcss"
},
"engines": {
"node": ">=8.3.0"
},
"files": [
"index.js",
"src"
]
}