-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.69 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.69 KB
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
{
"name": "@irfanshadikrishad/cipher",
"description": "A versatile and secure cryptographic library for implementing various cipher algorithms in Node.js applications with zero/0 dependencies.",
"version": "1.4.1",
"author": {
"name": "Irfan Shadik Rishad"
},
"license": "MPL-2.0",
"scripts": {
"all": "npm run build && npm run format && npm run lint && npm run test",
"build": "rm -rf ./dist && tsc",
"build:watch": "rm -rf ./dist && tsc -w",
"format": "prettier . --write",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prepare": "husky",
"test": "jest ./tests"
},
"keywords": [
"security",
"cipher",
"cryptography",
"encryption",
"decryption"
],
"homepage": "https://github.com/irfanshadikrishad/cipher#readme",
"bugs": {
"url": "https://github.com/irfanshadikrishad/cipher/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/irfanshadikrishad/cipher.git"
},
"type": "module",
"main": "./dist/index.js",
"bin": {
"cipher": "./dist/index.js"
},
"directories": {
"lib": "src",
"test": "test"
},
"files": [
"dist"
],
"prettier": "@irfanshadikrishad/prettier",
"devDependencies": {
"@eslint/js": "^9.32.0",
"@irfanshadikrishad/prettier": "^1.2.3",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.34.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"prettier": "^3.7.3",
"ts-jest": "^29.4.5",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0"
},
"publishConfig": {
"access": "public"
}
}