-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 910 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 910 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
{
"name": "postcss-colorfix",
"version": "0.0.5",
"description": "PostCSS plugin to recommend closest colors from your palette set as variables",
"keywords": [
"postcss",
"css",
"postcss-colorfix",
"colors",
"variables"
],
"author": "Archana Sankaranarayanan",
"license": "MIT",
"repository": "archana-s/postcss-colorfix",
"bugs": {
"url": "https://github.com/archana-s/postcss-colorfix/issues"
},
"homepage": "https://github.com/archana-s/postcss-colorfix",
"dependencies": {
"chalk": "^2.1.0",
"cssstats": "^3.1.0",
"nearest-color": "^0.4.0",
"postcss": "^6.0.1"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-postcss": "^2.0.2",
"jest": "^20.0.0"
},
"scripts": {
"test": "jest && eslint *.js"
},
"eslintConfig": {
"extends": "eslint-config-postcss/es5",
"env": {
"jest": true
}
}
}