-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
37 lines (37 loc) · 887 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
{
"name": "@ronomon/base64",
"version": "2.4.1",
"description": "Fast, robust Base64 encoder/decoder for Buffers in C++. Ignores whitespace. Detects corruption and truncation. Ships with extensive tests, a fuzz test and a benchmark.",
"main": "index.js",
"files": [
"benchmark.js",
"binding.cc",
"binding.gyp",
"fast-slow.js",
"index.js",
"test.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ronomon/base64.git"
},
"keywords": [
"base64",
"mime",
"wrap"
],
"author": "Joran Dirk Greef",
"license": "MIT",
"bugs": {
"url": "https://github.com/ronomon/base64/issues"
},
"homepage": "https://github.com/ronomon/base64#readme",
"scripts": {
"postinstall": "node-gyp clean",
"test": "node test.js"
},
"dependencies": {
"@ronomon/queue": "^3.0.0",
"nan": "^2.11.0"
}
}