-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.93 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "aes-ctr-concurrent",
"version": "1.0.0",
"description": "Native TypeScript Node.js library for AES-256-CTR, enabling concurrent encryption/decryption with precise IV offset handling down to any byte level, not just full blocks.",
"repository": {
"type": "git",
"url": "git+https://github.com/Rychu-Pawel/aes-ctr-concurrent.git"
},
"keywords": [
"aes",
"ctr",
"iv-offset",
"block-cipher",
"concurrent",
"aes-256",
"aes-256-ctr",
"encryption",
"decryption",
"crypto",
"nodejs",
"typescript",
"stream",
"cipher",
"decipher",
"promise",
"byte-offset",
"secure",
"cryptography"
],
"author": "Rychu",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rychu-Pawel/aes-ctr-concurrent/issues"
},
"homepage": "https://github.com/Rychu-Pawel/aes-ctr-concurrent#readme",
"main": "dist/src/index.js",
"type": "module",
"files": [
"dist/src"
],
"scripts": {
"test": "yarn build && ava",
"test:ci": "ava --tap",
"eslint": "eslint src test",
"eslint:ci": "yarn eslint",
"clean": "del-cli --force dist",
"build": "yarn clean && tsc",
"build:ci": "yarn build"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.0",
"@types/mock-fs": "^4.13.4",
"@types/node": "^22.9.3",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"ava": "^6.0.0",
"del-cli": "^6.0.0",
"eslint": "^8.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"mock-fs": "^5.4.1",
"typescript": "^5.0.4"
},
"ava": {
"files": [
"dist/test/**/*.spec.js",
"dist/examples/**/*.spec.js"
]
}
}