-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 888 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": "secret-blob",
"version": "1.1.0",
"description": "Tiny module for easy encryption of Buffers",
"main": "index.js",
"bin": {
"secret-blob-keygen": "./bin/keygen",
"secret-blob-encrypt": "./bin/encrypt",
"secret-blob-decrypt": "./bin/decrypt"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"nanoassert": "^2.0.0",
"sodium-native": "^3.1.1"
},
"devDependencies": {
"standard": "^14.3.4",
"tape": "^5.0.1"
},
"scripts": {
"pretest": "standard",
"test": "tape test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emilbayes/secret-blob.git"
},
"keywords": [],
"author": "Emil Bay <github@tixz.dk>",
"license": "ISC",
"bugs": {
"url": "https://github.com/emilbayes/secret-blob/issues"
},
"homepage": "https://github.com/emilbayes/secret-blob#readme"
}