-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1010 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
43
44
45
46
47
{
"name": "b-buf-b",
"version": "0.0.0",
"description": "base-x to bytesbuffer to base-x (x=2,8,10,16,32,36,64)",
"main": "src/b-buf-b.js",
"scripts": {
"start": "budo demo/demo.js:bundle.js --open --live",
"build": "browserify demo/demo.js > bundle.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serapath/b-buf-b.git"
},
"keywords": [
"transcode",
"encode",
"encoding",
"decoding",
"decode",
"buffer",
"bytes",
"binary",
"hex",
"decimal",
"serialize",
"deserialize",
"base2",
"base8",
"base10",
"base16",
"base32",
"base36",
"base64",
"basex"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/serapath/b-buf-b/issues"
},
"homepage": "https://github.com/serapath/b-buf-b#readme",
"devDependencies": {
"budo": "^11.6.3",
"randombytes": "^2.1.0",
"safe-buffer": "^5.2.1"
}
}