-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 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
{
"name": "base-numeral-system",
"version": "1.0.4",
"description": "Base numeral system converter. Convert from/to Binary, Octal, Decimal, Hexadecimal.",
"main": "src/base-numeral-system.js",
"keywords": [
"Binary to Decimal",
"Binary to Hexadecimal",
"Binary to Octal",
"Octal to Decimal",
"Octal to Binary",
"Octal to Hexadecimal",
"Decimal to Hexadecimal",
"Decimal to Binary",
"Decimal to Octal",
"Hexadecimal to Binary",
"Hexadecimal to Decimal",
"Hexadecimal to Octal"
],
"author": "Goran <[email protected]>",
"homepage": "https://tools.base64decode.net/libs/base-numeral-system",
"license": "MIT",
"type": "module",
"bugs": "https://github.com/gorangorun/base-numeral-system/issues",
"repository": {
"type": "git",
"url": "https://github.com/gorangorun/base-numeral-system.git"
},
"devDependencies": {
"mocha": "^10.2.0"
},
"scripts": {
"test": "mocha"
}
}