forked from tjmehta/lex62
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.04 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
{
"name": "lex62ts",
"version": "1.0.0",
"description": "Fast, lexicographic base62 encode and decode",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "tap --ts",
"build": "tsc -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nkoehring/lex62ts.git"
},
"keywords": [
"base62",
"alphabetical",
"lex",
"lexico",
"lexicographic",
"lexicographical",
"order",
"sort",
"fast",
"efficient",
"performance",
"perf",
"encode",
"decode",
"string",
"number",
"base",
"base10",
"62",
"10",
"typescript"
],
"authors": [
"Norman Köhring",
"Tejesh Mehta"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nkoehring/lex62ts/issues"
},
"homepage": "https://github.com/nkoehring/lex62ts#readme",
"devDependencies": {
"@types/node": "^18.6.2",
"@types/tap": "^15.0.7",
"tap": "^16.3.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {}
}