aboutsummaryrefslogtreecommitdiff
path: root/libs/base-x/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'libs/base-x/package.json')
-rw-r--r--libs/base-x/package.json44
1 files changed, 44 insertions, 0 deletions
diff --git a/libs/base-x/package.json b/libs/base-x/package.json
new file mode 100644
index 0000000..c14a93e
--- /dev/null
+++ b/libs/base-x/package.json
@@ -0,0 +1,44 @@
1{
2 "name": "base-x",
3 "version": "3.0.7",
4 "description": "Fast base encoding / decoding of any given alphabet",
5 "keywords": [
6 "base-x",
7 "base58",
8 "base62",
9 "base64",
10 "crypto",
11 "crytography",
12 "decode",
13 "decoding",
14 "encode",
15 "encoding"
16 ],
17 "homepage": "https://github.com/cryptocoinjs/base-x",
18 "bugs": {
19 "url": "https://github.com/cryptocoinjs/base-x/issues"
20 },
21 "license": "MIT",
22 "author": "Daniel Cousens",
23 "files": [
24 "src"
25 ],
26 "main": "src/index.js",
27 "types": "src/index.d.ts",
28 "repository": {
29 "type": "git",
30 "url": "https://github.com/cryptocoinjs/base-x.git"
31 },
32 "scripts": {
33 "build": "tsc -p ./tsconfig.json ; standard --fix; browserify src/index.js --standalone basex > /tmp/base-x.js"
34 },
35 "devDependencies": {
36 "@types/node": "12.0.10",
37 "standard": "^10.0.3",
38 "tape": "^4.5.1",
39 "typescript": "3.5.2"
40 },
41 "dependencies": {
42 "safe-buffer": "^5.0.1"
43 }
44}