-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
84 lines (84 loc) · 1.77 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "salty",
"version": "4.1.3",
"description": "Alternative public key encryption",
"main": "lib.js",
"bin": "./bin/salty",
"dependencies": {
"bs58": "^4.0.1",
"cli-prompt": "^0.6.0",
"commander": "git+https://github.com/carlos8f/commander.js.git",
"fstream": "^1.0.11",
"is-utf8": "^0.2.1",
"micro-request": "^666.0.10",
"minimist": "^1.2.0",
"nacl-stream": "^0.3.5",
"pempal": "^1.0.2",
"progress": "^2.0.0",
"rimraf": "^2.6.2",
"tar": "^2.2.1",
"tar-pack": "^3.4.1",
"through": "^2.3.8",
"tweetnacl": "^1.0.0"
},
"devDependencies": {
"mocha": "^5.2.0",
"suppose": "git+https://github.com/carlos8f/node-suppose.git"
},
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec --timeout 10s --bail"
},
"repository": {
"type": "git",
"url": "git://github.com/carlos8f/salty.git"
},
"keywords": [
"crypto",
"nacl",
"sodium",
"ecc",
"encryption",
"decryption",
"privacy"
],
"author": "Carlos Rodriguez <[email protected]> (http://s8f.org/)",
"license": "MIT",
"homepage": "https://github.com/carlos8f/salty",
"bugs": {
"url": "https://github.com/carlos8f/salty/issues"
},
"bundledDependencies": [
"balanced-match",
"base-x",
"block-stream",
"brace-expansion",
"bs58",
"cli-prompt",
"commander",
"concat-map",
"fs.realpath",
"generic-pool",
"glob",
"graceful-fs",
"graceful-readlink",
"inflight",
"inherits",
"is-utf8",
"js-scrypt",
"keypress",
"micro-request",
"minimatch",
"minimist",
"mkdirp",
"nacl-stream",
"once",
"path-is-absolute",
"pempal",
"progress",
"rimraf",
"tar-pack",
"through",
"tweetnacl",
"wrappy"
]
}