-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 736 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 736 Bytes
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
{
"name": "scrypt-padding",
"type": "module",
"main": "./index.mjs",
"version": "1.0.0",
"description": "Pad/Unpad messages using Scrypt hashing algorithm.",
"author": "Yaron Koresh <aharonkoresh1@gmail.com>",
"scripts": {
"test": "node test.mjs"
},
"license": {
"type": "MIT",
"url": "https://github.com/YaronKoresh/scrypt-padding/raw/master/LICENSE"
},
"repository": {
"type": "git",
"url": "https://github.com/YaronKoresh/scrypt-padding.git"
},
"bugs": {
"url": "https://github.com/YaronKoresh/scrypt-padding/issues"
},
"keywords": [
"scrypt",
"pad",
"unpad",
"hash",
"data"
],
"dependencies": {
"buffer": "^6.0.3"
}
}