-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
69 lines (69 loc) · 1.36 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
{
"name": "crypto-es",
"version": "2.1.0",
"description": "A cryptography algorithms library compatible with ES6 and TypeScript",
"keywords": [
"typescript",
"security",
"crypto",
"cipher",
"ArrayBuffer",
"TypedArray",
"file",
"ECMAScript",
"ES6",
"Hash",
"MD5",
"SHA1",
"SHA-1",
"SHA2",
"SHA-2",
"SHA3",
"SHA-3",
"SHA256",
"SHA-256",
"RC4",
"Rabbit",
"AES",
"DES",
"3DES",
"TripleDES",
"PBKDF2",
"HMAC",
"HEX",
"Base64",
"Base64url",
"blowfish"
],
"sideEffects": false,
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"debug": "node --experimental-modules __tests__/debug.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/entronad/crypto-es.git"
},
"author": "LIN Chen",
"license": "MIT",
"bugs": {
"url": "https://github.com/entronad/crypto-es/issues"
},
"homepage": "https://github.com/entronad/crypto-es#readme",
"devDependencies": {
"@types/jest": "^29.5.2",
"jest": "29.5.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"jest": {
"testRegex": "(/__tests__/.*\\.test\\.ts)$",
"preset": "ts-jest/presets/default-esm"
}
}