-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 988 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 988 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
33
34
35
36
37
38
39
40
{
"name": "@f3ndot/aesutil",
"version": "0.3.2",
"description": "An opinionated NodeJS convenience library for AES-256-GCM Encryption/Decryption with optional Additional Data (AAD/AEAD) in a portable way",
"repository": {
"type": "git",
"url": "https://github.com/f3ndot/aesutil.js.git"
},
"homepage": "https://github.com/f3ndot/aesutil.js#readme",
"bugs": {
"url": "https://github.com/f3ndot/aesutil.js/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"test": "jest",
"build": "tsc",
"prepublish": "yarn build"
},
"author": "Justin Bull <me@justinbull.ca>",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.5",
"@types/node": "^20.6.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"keywords": [
"aes-256-gcm",
"encryption",
"decryption",
"crypto",
"utility"
]
}