-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
{
"name": "@gness1804/color-converters",
"version": "2.1.4",
"bin": {
"rgb-to-hex": "rgbToHex.js",
"hex-to-rgb": "hexToRgb.js"
},
"description": "A utility that provides simple color conversions from RGB to Hex and vice-versa.",
"repository": "https://github.com/gness1804/color-converters.git",
"author": "Graham Nessler <[email protected]>",
"license": "MIT",
"keywords": [
"rgb",
"hex",
"hexadecimal",
"color"
],
"scripts": {
"lint": "eslint . && prettier --check \"./**/*.{js,json}\"",
"fix": "eslint --fix . && prettier --write \"./**/*.{js,json}\"",
"test": "ava",
"start:rgb": "node rgbToHex.js",
"start:hex": "node hexToRgb.js",
"changelog": "auto-changelog -p -l 8 && git add CHANGELOG.md",
"tag:patch": "npm version patch && npm run changelog",
"tag:minor": "npm version minor && npm run changelog",
"tag:major": "npm version major && npm run changelog"
},
"devDependencies": {
"eslint": "^7.29.0",
"prettier": "^2.3.2"
},
"pre-commit": [
"lint",
"test"
],
"dependencies": {
"auto-changelog": "^2.3.0",
"ava": "^3.15.0",
"cli-alerts": "^1.2.2",
"cli-handle-error": "^4.4.0",
"cli-meow-help": "^2.0.2",
"execa": "^5.1.1",
"meow": "^9.0.0",
"pre-commit": "^1.2.2",
"update-notifier": "^5.1.0"
}
}