forked from cryptocoinjs/base-x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 854 Bytes
/
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
{
"name": "@detox/base-x",
"version": "3.0.4",
"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/Detox/base-x",
"bugs": {
"url": "https://github.com/Detox/base-x/issues"
},
"license": "MIT",
"author": "Daniel Cousens",
"files": [
"index.js",
"index.min.js"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/Detox/base-x.git"
},
"scripts": {
"standard": "standard",
"test": "npm run unit && npm run standard",
"unit": "tape test/*.js"
},
"devDependencies": {
"build-gc": "^0.2.0",
"standard": "^10.0.3",
"tape": "^4.5.1"
}
}