summaryrefslogtreecommitdiff
path: root/includes/external/matrix/node_modules/base-x/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'includes/external/matrix/node_modules/base-x/package.json')
-rw-r--r--includes/external/matrix/node_modules/base-x/package.json46
1 files changed, 46 insertions, 0 deletions
diff --git a/includes/external/matrix/node_modules/base-x/package.json b/includes/external/matrix/node_modules/base-x/package.json
new file mode 100644
index 0000000..30061da
--- /dev/null
+++ b/includes/external/matrix/node_modules/base-x/package.json
@@ -0,0 +1,46 @@
+{
+ "name": "base-x",
+ "version": "4.0.0",
+ "description": "Fast base encoding / decoding of any given alphabet",
+ "keywords": [
+ "base-x",
+ "base58",
+ "base62",
+ "base64",
+ "crypto",
+ "crytography",
+ "decode",
+ "decoding",
+ "encode",
+ "encoding"
+ ],
+ "homepage": "https://github.com/cryptocoinjs/base-x",
+ "bugs": {
+ "url": "https://github.com/cryptocoinjs/base-x/issues"
+ },
+ "license": "MIT",
+ "author": "Daniel Cousens",
+ "files": [
+ "src"
+ ],
+ "main": "src/index.js",
+ "types": "src/index.d.ts",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/cryptocoinjs/base-x.git"
+ },
+ "scripts": {
+ "build": "tsc -p ./tsconfig.json ; standard --fix",
+ "gitdiff": "npm run build && git diff --exit-code",
+ "prepublish": "npm run gitdiff",
+ "standard": "standard",
+ "test": "npm run unit && npm run standard",
+ "unit": "tape test/*.js"
+ },
+ "devDependencies": {
+ "@types/node": "12.0.10",
+ "standard": "^10.0.3",
+ "tape": "^4.5.1",
+ "typescript": "3.5.2"
+ }
+}