-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 904 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
{
"name": "hex-color-opacity",
"version": "0.4.2",
"description": "Lightweight module for adding opacity to hexadecimal colors",
"main": "lib/index.js",
"engines": {
"node": ">12"
},
"scripts": {
"lint": "standard",
"test": "jest",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dominicegginton/hex-color-opacity.git"
},
"keywords": [
"color",
"opacity",
"hex",
"hexadecimal",
"alpha"
],
"author": {
"name": "Dominic Egginton",
"email": "dominic.egginton@gmail.com",
"url": "https://dominicegginton.dev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dominicegginton/hex-color-opacity/issues"
},
"homepage": "https://github.com/dominicegginton/hex-color-opacity#readme",
"devDependencies": {
"jest": "^28.1.0",
"standard": "^17.0.0"
}
}