-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.82 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "postcss-color-converter",
"version": "1.1.2",
"description": "PostCSS plugin for convert colors.",
"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 Trayt <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": {
"color-convert": "~2.0.1",
"color-name": "~1.1.4",
"postcss-values-parser": "^5.0.0"
},
"devDependencies": {
"@logux/eslint-config": "^33.0.0",
"chai": "4.2.0",
"clean-publish": "^4.0.0",
"eslint": "8.9.0",
"eslint-config-postcss": "^3.0.7",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-es5": "^1.4.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.19.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prefer-let": "^1.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^12.1.0",
"mocha": "9.2.0",
"postcss": "^8.0.0",
"postcss-cli": "^8.3.1",
"postcss-scss": "^3.0.5"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"eslintConfig": {
"extends": "eslint-config-postcss"
},
"engines": {
"node": ">=8.3.0"
},
"files": [
"index.js",
"src"
]
}