-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.04 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
{
"name": "tweetnacl-nodewrap",
"version": "0.2.0",
"description": "Nodejs wraper for TweetNaCl cryptographic library",
"main": "src/js/nacl.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/bitmark-inc/tweetnacl-nodewrap.git"
},
"keywords": [
"crypto",
"cryptography",
"curve25519",
"ed25519",
"encrypt",
"hash",
"key",
"nacl",
"poly1305",
"public",
"salsa20",
"signatures"
],
"author": {
"name": "bitmark-inc"
},
"license": "Public domain",
"bugs": {
"url": "https://github.com/bitmark-inc/tweetnacl-nodewrap/issues"
},
"engines": {
"node": ">=10.20 <14"
},
"dependencies": {
"bindings": "~1.3.0",
"debug": "4.1.1",
"ffi-napi": "3.0.1",
"ref-napi": "3.0.1",
"ref-struct-di": "1.1.0"
},
"devDependencies": {
"mocha": "*",
"tape": "^4.0.0"
},
"browser": {
"buffer": false,
"crypto": false
},
"scripts": {
"install": "node scripts/install_dependencies.js"
}
}