-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.15 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
{
"name": "network-mapper",
"version": "1.0.5",
"type": "commonjs",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"prepublish": "npm run build",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint --fix src/**/*.ts",
"test": "mocha --timeout 5000 -r ts-node/register 'test/**/*.test.ts'"
},
"files": [
"lib"
],
"keywords": [
"nmap",
"network",
"mapper",
"scanner",
"spoofing",
"host",
"discovery"
],
"author": "stogoh",
"license": "GPL-3.0",
"homepage": "https://github.com/stogoh/network-mapper",
"repository": {
"type": "git",
"url": "https://github.com/stogoh/network-mapper.git"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.22",
"@types/xml2js": "^0.4.8",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"chai": "^4.3.4",
"eslint": "^7.26.0",
"eslint-plugin-spellcheck": "^0.0.17",
"mocha": "^8.4.0",
"ts-node": "^10.0.0",
"typescript": "^4.1.3"
},
"dependencies": {
"xml2js": "^0.4.23"
}
}