-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.6 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
{
"name": "ctf",
"version": "1.0.0",
"description": "A command-line shell utility for setting up and managing Capture The Flag (CTF)",
"main": "bin/index.js",
"type": "commonjs",
"private": "true",
"bin": {
"ctf": "./bin/index.js"
},
"scripts": {
"lint": "eslint .",
"format": "prettier --write .",
"lint:fix": "eslint . --fix",
"prepare": "husky"
},
"keywords": [
"CTF",
"Capture The Flag",
"Security",
"Hacking",
"Challenges",
"Utility"
],
"dependencies": {
"commander": "^12.1.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3"
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged",
"prepare-commit-msg": "exec < /dev/tty && npx git-cz --hook || true",
"commit-msg": "npx commitlint --edit $1 "
}
},
"lint-staged": {
"*.js": [
"npm run format",
"npm run lint:fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"author": "Armoghan-ul-Mohmin",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Armoghans-Organization/ctf.git"
},
"bugs": {
"url": "https://github.com/Armoghans-Organization/ctf/issues"
},
"homepage": "https://github.com/Armoghans-Organization/ctf#readme"
}