-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 884 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 884 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
{
"name": "@fry/base62",
"version": "1.1.0",
"description": "Base62 encoder/decoder",
"main": "src/index.js",
"scripts": {
"test": "ava"
},
"keywords": [
"base62",
"base",
"encode",
"encoding",
"decode",
"decoding",
"alphanumeric",
"alphanum",
"alphabet",
"symbol",
"table"
],
"author": "Fredric Rylander",
"license": "MIT",
"devDependencies": {
"ava": "^3.12.1",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0"
},
"dependencies": {
"@fry/bits": "^1.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fredricrylander/base62.git"
},
"bugs": {
"url": "https://github.com/fredricrylander/base62/issues"
},
"homepage": "https://github.com/fredricrylander/base62#readme",
"types": "./types/index.d.ts"
}