-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
37 lines (37 loc) · 907 Bytes
/
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
{
"name": "css-color-extractor",
"version": "1.1.4",
"description": "Extract from colors from CSS.",
"main": "index.js",
"keywords": [
"css",
"color"
],
"author": "Rob Sanchez <info@robsanchez.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rsanchez/css-color-extractor.git"
},
"bugs": {
"url": "https://github.com/rsanchez/css-color-extractor/issues"
},
"homepage": "https://github.com/rsanchez/css-color-extractor",
"dependencies": {
"color": "^4.2.3",
"postcss": ">=5.0.2"
},
"scripts": {
"lint": "eslint index.js",
"fix": "eslint index.js --fix",
"test": "jest"
},
"devDependencies": {
"eslint": "^8.41.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0"
}
}