forked from paixaop/node-sodium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 799 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": "sodium",
"version": "2.0.1",
"libsodium_version": "1.0.11",
"author": "Pedro Paixao <[email protected]>",
"license": "MIT",
"main": "index.js",
"description": "Lib Sodium port for node.js",
"dependencies": {
"nan": "^2.2.1"
},
"devDependencies": {
"mdextract": "^1.0.0",
"istanbul": ">=0.4.3",
"mocha": ">=2.4.5",
"mocha-istanbul": ">=0.2.0",
"node-gyp": ">=3.3.1"
},
"scripts": {
"test": "make test",
"preinstall": "node install.js --preinstall",
"install": "node install.js --install"
},
"repository": {
"type": "git",
"url": "https://github.com/paixaop/node-sodium"
},
"keywords": [
"encryption",
"ed25519",
"curve25519",
"NaCl",
"libsodium",
"crypto",
"unique",
"stamp"
]
}