-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.39 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
51
52
53
54
55
56
57
58
59
60
{
"name": "power-radix",
"version": "3.0.1",
"description": "Library for converting numbers from one radix representation (encoding) to another, with optional custom defined encodings. Inspired by rubyworks/radix.",
"main": "lib/index.js",
"engines": {
"node": ">= 10.0.0"
},
"scripts": {
"lint": "jshint",
"test": "npm run lint; NODE_PATH=./ mocha",
"test-cov": "npm run lint; NODE_PATH=./ nyc --reporter=lcovonly mocha",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"standard": {
"env": [
"mocha"
]
},
"repository": {
"type": "git",
"url": "https://github.com/cflynn07/power-radix.git"
},
"keywords": [
"arithmetic",
"base conversion",
"base convert",
"base",
"base10",
"base58 decode",
"base58 encode",
"base58",
"base64 decode",
"base64 encode",
"base64",
"conversion",
"convert",
"decode",
"encode",
"hex",
"math",
"power",
"radix conversion",
"radix convert",
"radix"
],
"author": "Casey Flynn <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cflynn07/power-radix/issues"
},
"homepage": "https://github.com/cflynn07/power-radix",
"devDependencies": {
"debug": "^4.3.4",
"expect.js": "^0.3.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"standard": "^17.1.0"
}
}