-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 884 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
39
40
41
{
"name": "@dkh-dev/crypto",
"version": "4.0.0",
"description": "A crypto library that is easy to use and hard to misuse",
"main": "index.js",
"files": [
"index.js",
"lib/"
],
"scripts": {
"test": "node test",
"prepublishOnly": "npm test"
},
"devDependencies": {
"@dkh-dev/eslint-config": "^1.6.2",
"@dkh-dev/tape-helper": "^1.0.4",
"tape": "^5.0.1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/dkh-dev/crypto.git"
},
"keywords": [
"crypto",
"scrypt",
"encrypt",
"decrypt",
"hash",
"hmac",
"sha",
"sha256",
"aes",
"aes256"
],
"author": "Hoang <dangkyokhoang@gmail.com> (https://dangkyokhoang.github.io/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/dkh-dev/crypto/issues"
},
"homepage": "https://github.com/dkh-dev/crypto#readme"
}