forked from noseglid/base85
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 832 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
{
"name": "base85",
"version": "1.2.1",
"description": "Base85 (Ascii85) encode and decode functionality",
"main": "lib/base85.js",
"scripts": {
"test": "./node_modules/.bin/jshint . && ./node_modules/.bin/nodeunit tests"
},
"dependencies": {
"bignum": "^0.10.2",
"ipv6": "^3.1.0",
"underscore": "^1.6.0"
},
"devDependencies": {
"nodeunit": "^0.9.0",
"underscore": "^1.6.0",
"jshint": "^2.5.1"
},
"repository": {
"type": "git",
"url": "https://github.com/noseglid/base85"
},
"keywords": [
"base85",
"ascii85",
"encode",
"decode",
"binary-to-text"
],
"author": "Alexander Olsson <noseglid@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/noseglid/base85/issues"
},
"homepage": "https://github.com/noseglid/base85"
}