-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.25 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
{
"name": "@empo/encryption",
"version": "0.2.9",
"description": "A TypeScript library for widely used crypto standards",
"homepage": "https://empo.im",
"author": "Empo Dev <[email protected]> (https://github.com/EmpoHQ)",
"contributors": [
"Donghyun Kim <[email protected]> (https://github.com/peterkimzz)",
"Handong Choi <[email protected]> (https://github.com/henrychoi7)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/EmpoHQ/encryption.git"
},
"bugs": {
"url": "https://github.com/EmpoHQ/encryption/issues"
},
"keywords": [
"empo",
"security",
"crypto",
"hash",
"AES",
"Argon2",
"SHA",
"CSPRNG",
"Base64",
"HMAC",
"SHAKE256",
"SHA-3"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && node_modules/.bin/tsc",
"prepublish": "npm run build",
"test": "node_modules/.bin/jest",
"deploy": "npm test && npm publish"
},
"dependencies": {
"argon2": "^0.27.2"
},
"devDependencies": {
"@types/jest": "^25.1.3",
"@types/node": "^14.14.12",
"coveralls": "^3.1.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.1",
"ts-node": "^8.6.2",
"typescript": "^3.9.9"
}
}