-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
35 lines (35 loc) · 956 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
{
"name": "session25519",
"version": "1.1.0",
"description": "Derive Curve25519 encryption keys and ed25519 signing keys from username and password via BLAKE2s hash and scrypt.",
"main": "index.js",
"scripts": {
"test": "node test.js | tap-spec",
"build": "browserify index.js --standalone session25519 > dist/session25519.js"
},
"repository": {
"type": "git",
"url": "git@github.com:jo/session25519.git"
},
"keywords": [
"curve25519",
"scrypt"
],
"author": "Johannes J. Schmidt <schmidt@netzmerk.com> (http://die-tf.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jo/session25519/issues"
},
"homepage": "https://github.com/jo/session25519",
"dependencies": {
"base64-js": "^1.1.1",
"blake2s-js": "^1.0.3",
"scrypt-async": "^1.2.0",
"tweetnacl": "^0.14.0"
},
"devDependencies": {
"browserify": "^13.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.0.0"
}
}