@irfanshadikrishad/cipher 1.3.0 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +63 -63
package/package.json
CHANGED
|
@@ -1,65 +1,65 @@
|
|
|
1
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
|
-
|
|
2
|
+
"name": "@irfanshadikrishad/cipher",
|
|
3
|
+
"description": "A versatile and secure cryptographic library for implementing various cipher algorithms in Node.js applications with zero/0 dependencies.",
|
|
4
|
+
"version": "1.3.2",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Irfan Shadik Rishad"
|
|
7
|
+
},
|
|
8
|
+
"license": "MPL-2.0",
|
|
9
|
+
"scripts": {
|
|
10
|
+
"all": "npm run build && npm run format && npm run lint && npm run test",
|
|
11
|
+
"build": "rm -rf ./dist && tsc",
|
|
12
|
+
"build:watch": "rm -rf ./dist && tsc -w",
|
|
13
|
+
"format": "prettier . --write",
|
|
14
|
+
"lint": "eslint . --ext .ts",
|
|
15
|
+
"lint:fix": "eslint . --ext .ts --fix",
|
|
16
|
+
"prepare": "husky",
|
|
17
|
+
"test": "jest ./tests"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"security",
|
|
21
|
+
"cipher",
|
|
22
|
+
"cryptography",
|
|
23
|
+
"encryption",
|
|
24
|
+
"decryption"
|
|
25
|
+
],
|
|
26
|
+
"homepage": "https://github.com/irfanshadikrishad/cipher#readme",
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://github.com/irfanshadikrishad/cipher/issues"
|
|
29
|
+
},
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "git+https://github.com/irfanshadikrishad/cipher.git"
|
|
33
|
+
},
|
|
34
|
+
"type": "module",
|
|
35
|
+
"main": "./dist/index.js",
|
|
36
|
+
"bin": {
|
|
37
|
+
"cipher": "./dist/index.js"
|
|
38
|
+
},
|
|
39
|
+
"directories": {
|
|
40
|
+
"lib": "src",
|
|
41
|
+
"test": "test"
|
|
42
|
+
},
|
|
43
|
+
"files": [
|
|
44
|
+
"dist"
|
|
45
|
+
],
|
|
46
|
+
"prettier": "@irfanshadikrishad/prettier",
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@eslint/js": "^9.32.0",
|
|
49
|
+
"@irfanshadikrishad/prettier": "^1.2.3",
|
|
50
|
+
"@types/jest": "^30.0.0",
|
|
51
|
+
"@typescript-eslint/eslint-plugin": "^8.38.0",
|
|
52
|
+
"@typescript-eslint/parser": "^8.38.0",
|
|
53
|
+
"eslint": "^9.34.0",
|
|
54
|
+
"globals": "^16.3.0",
|
|
55
|
+
"husky": "^9.1.7",
|
|
56
|
+
"jest": "^30.1.3",
|
|
57
|
+
"prettier": "^3.6.2",
|
|
58
|
+
"ts-jest": "^29.4.1",
|
|
59
|
+
"typescript": "^5.8.3",
|
|
60
|
+
"typescript-eslint": "^8.38.0"
|
|
61
|
+
},
|
|
62
|
+
"publishConfig": {
|
|
63
|
+
"access": "public"
|
|
64
|
+
}
|
|
65
65
|
}
|