-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.31 KB
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
{
"name": "i64",
"version": "0.5.8",
"description": "URL safe Base64 Integer Strings (BIS) and conversion tools. Supports both fast conversions for regular integers and large integer strings. Assists with compression as fewer base 64 digits are needed to represent larger integers than base 10 digits. Unlike RFC-3548 Base 64 encodings, readability of BIS is improved for small integers by using an alphabet that extends base-converter",
"main": "i64.js",
"scripts": {
"test": "mocha -R list test/*.js",
"TESTS.md": "mocha -R markdown test/*.js > TESTS.md"
},
"repository": {
"type": "git",
"url": "https://github.com/angleman/i64.git"
},
"keywords": [
"url",
"base64",
"hex",
"hexidecimal",
"integer",
"date",
"time",
"timestamp",
"geo",
"degrees",
"longitude",
"latitude",
"compression",
"tools",
"conversion"
],
"author": "angleman",
"license": "MIT",
"bugs": {
"url": "https://github.com/angleman/i64/issues"
},
"engines" : {
"node" : ">=0.8.0"
},
"dependencies": {
"microtime": "~0.3.3",
"validator": "~1.5.0",
"int-encoder": "~0.1.4"
},
"devDependencies": {
"license-md": "~0.2.1",
"grunt": "0.4.x",
"grunt-bump": "0.0.x",
"mocha": "~1.12.0",
"should": "~1.2.2"
}
}