-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1 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
{
"name": "convert-color-js",
"version": "2.0.0",
"description": "Convert colors between different formats",
"main": "index.js",
"type": "module",
"files": [
"index.js"
],
"scripts": {
"test": "uvu"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikemcbride/convert-color.git"
},
"keywords": [
"colors",
"conversion"
],
"author": "mikemcbride",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikemcbride/convert-color/issues"
},
"homepage": "https://github.com/mikemcbride/convert-color#readme",
"dependencies": {
"hex-rgb": "^5.0.0",
"hex-to-hsl": "^1.0.2",
"hsl-regex": "^1.0.0",
"hsl-to-rgb-for-reals": "^1.1.1",
"hsla-regex": "^1.0.0",
"rgb-hex": "^4.0.0",
"rgb-regex": "^1.0.1",
"rgb-to-hsl": "^0.0.3",
"rgba-regex": "^1.0.0"
},
"devDependencies": {
"uvu": "^0.5.6"
}
}