-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 967 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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "float-hsl2rgb",
"version": "1.0.2",
"description": "converts [H,S,L] to [R,G,B]",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "[email protected]",
"url": "https://github.com/mattdesl"
},
"dependencies": {},
"devDependencies": {
"standard": "^3.6.1",
"tap-spec": "^3.0.0",
"tape": "^4.0.0"
},
"scripts": {
"test": "standard && node test.js | tap-spec"
},
"keywords": [
"hsl",
"rgb",
"hue",
"sat",
"saturation",
"lightness",
"light",
"brightness",
"hsb",
"rgba",
"color",
"red",
"blue",
"green",
"convert",
"conversion",
"conversions",
"colors"
],
"repository": {
"type": "git",
"url": "git://github.com/mattdesl/float-hsl2rgb.git"
},
"homepage": "https://github.com/mattdesl/float-hsl2rgb",
"bugs": {
"url": "https://github.com/mattdesl/float-hsl2rgb/issues"
}
}