-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.09 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
{
"name": "hex-and-rgba",
"version": "2.0.0",
"description": "Convert HEX/HEXa/aHEX with alpha to RGBa and back",
"main": "index.js",
"exports": {
"./esm": "./esm/index.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BananaAcid/hex-and-rgba.git"
},
"bin": {
"rgbatohex": "bin/rgbatohex.js",
"rgbatoahex": "bin/rgbatoahex.js",
"hextorgba": "bin/hextorgba.js",
"ahextorgba": "bin/ahextorgba.js",
"hexandrgba": "bin/hex-and-rgba.js",
"hex-and-rgba": "bin/hex-and-rgba.js"
},
"keywords": [
"hex",
"hexa",
"ahex",
"rgb",
"rgba",
"convert",
"color",
"simple",
"css",
"html",
"browser",
"esm",
"es6"
],
"author": "Nabil Redmann <repo@BananaAcid.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BananaAcid/hex-and-rgba/issues"
},
"homepage": "https://github.com/BananaAcid/hex-and-rgba#readme",
"engines": {
"node": ">= 7.6",
"deno": ">= 1.0"
},
"scripts": {
"start": "wsl -e \"node tests/tests.js\"",
"test": "node tests/tests.js"
}
}