-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 981 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 981 Bytes
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
{
"name": "node-nmap-hosts",
"version": "0.1.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"nmap",
"hosts",
"xml",
"parser",
"network",
"scanner",
"security",
"pentest"
],
"author": "KC Haley",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/kacesensitive/node-nmap-hosts.git"
},
"scripts": {
"build": "tsc",
"test": "jest",
"format": "prettier --write \"./**/*.ts\"",
"prepublish": "yarn run build",
"test:coverage": "yarn test --coverage",
"test:badges": "yarn test:coverage && yarn jest-coverage-badges"
},
"dependencies": {
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.5",
"@types/xml2js": "^0.4.14",
"jest": "^29.6.1",
"jest-coverage-badges": "^1.1.2",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}