-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 981 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 981 Bytes
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
{
"name": "addhex",
"version": "0.1.0",
"description": "A utility for adding hexadecimal values with both library and CLI interfaces",
"type": "module",
"main": "lib/index.js",
"exports": {
".": "./lib/index.js"
},
"bin": {
"addhex": "./bin/cli.js"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"start": "node bin/cli.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/sandy-mount/addhex.git"
},
"keywords": [
"hex",
"hexadecimal",
"add",
"cli",
"utility",
"calculator"
],
"author": "Melvin Carvalho",
"license": "MIT",
"bugs": {
"url": "https://github.com/sandy-mount/addhex/issues"
},
"homepage": "https://github.com/sandy-mount/addhex#readme",
"devDependencies": {
"eslint": "^8.51.0",
"jest": "^29.7.0"
},
"engines": {
"node": ">=14.16.0"
},
"files": [
"lib",
"bin"
]
}