-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
38 lines (38 loc) · 819 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
{
"name": "base85",
"version": "3.1.0",
"description": "Base85 (Ascii85) encode and decode functionality",
"main": "lib/base85.js",
"typings": "lib/base85.d.ts",
"scripts": {
"test": "jshint . && nodeunit tests"
},
"dependencies": {
"buffer": "^6.0.3",
"ip-address": "^5.8.9"
},
"devDependencies": {
"jshint": "^2.13.1",
"nodeunit": "^0.11.3"
},
"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",
"engines": {
"node": ">=10.24.1"
}
}