-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
79 lines (79 loc) · 2.29 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
70
71
72
73
74
75
76
77
78
79
{
"name": "httpfy",
"version": "1.0.0",
"description": "A Incredible fast and Powerful HTTP toolkit",
"main": "bin/httpfy.js",
"type": "commonjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node bin/httpfy.js -h",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"format": "npm run prettier:fix && npm run lint:fix",
"postinstall": "node ./lib/postInstall.js",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devXprite/httpfy.git"
},
"author": {
"name": "DevXprite",
"email": "[email protected]"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/devXprite/httpfy/issues"
},
"homepage": "https://github.com/devXprite/httpfy#readme",
"devDependencies": {
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^43.0.2",
"prettier": "2.7.1",
"standard-version": "^9.5.0"
},
"dependencies": {
"axios": "^0.27.2",
"bluebird": "^3.7.2",
"boxen": "^5.1.2",
"chalk": "^4.1.0",
"cli-progress": "^3.11.2",
"commander": "^9.4.0",
"file-write": "^0.0.2",
"lodash": "^4.17.21",
"update-notifier": "^5.1.0"
},
"keywords": [
"OSINT",
"NodeJs",
"cybersecurity",
"infosec",
"kali-tools",
"termux",
"cli",
"http"
],
"bin": {
"httpfy": "./bin/httpfy.js"
},
"preferGlobal": true,
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=8.0.0"
},
"engineStrict": true
}