-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.72 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.72 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
66
{
"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.5.4",
"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": "^10.0.1",
"@irfanshadikrishad/prettier": "^1.3.4",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1"
},
"publishConfig": {
"access": "public"
}
}