-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 872 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
{
"name": "@imirfanul/secure-encryption",
"version": "1.0.0",
"description": "A simple encryption and decryption service using AES-256-CTR and HMAC-SHA512.",
"main": "dist/CryptoService.js",
"types": "dist/CryptoService.d.ts",
"scripts": {
"test": "mocha -r ts-node/register test/*.test.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/imirfanul/secure-encryption.git"
},
"keywords": [
"encryption"
],
"author": "Md Irfanul Alam Tanveer",
"license": "ISC",
"bugs": {
"url": "https://github.com/imirfanul/secure-encryption/issues"
},
"homepage": "https://github.com/imirfanul/secure-encryption#readme",
"devDependencies": {
"typescript": "^5.5.3",
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.9",
"chai": "^5.1.1",
"mocha": "^10.5.2",
"ts-node": "^10.9.2"
}
}