UNPKG

netw0rkjs

Version:

internet network classes to handle IP, MAC, DHCP, CIDR, Subnets, etc

56 lines 1.46 kB
{ "name": "netw0rkjs", "author": "Diogny A. B.", "version": "1.0.10", "description": "internet network classes to handle IP, MAC, DHCP, CIDR, Subnets, etc", "license": "MIT", "main": "./dist/index.js", "types": "./dist/index.d.ts", "homepage": "https://github.com/Diogny/netjs#readme", "bugs": { "url": "https://github.com/Diogny/netjs/issues" }, "repository": { "type": "git", "url": "git+https://github.com/Diogny/netjs.git" }, "keywords": [ "IP", "MAC", "DHCP", "CIDR", "Subnet" ], "files": [ "dist/lib/*", "dist/index.d.ts", "dist/index.js" ], "scripts": { "cli": "ts-node src/cli.ts", "lint": "eslint src/ --ext .js,.jsx,.ts,.tsx", "test": "jest", "clean": "rd /Q /S dist", "ts-node": "ts-node", "docs": "typedoc --entryPoints src/index.ts", "build": "pnpm clean && tsc -p tsconfig.json", "esbuild-browser:dev": "esbuild src/index.ts --bundle --outfile=dist/netw0rkjs.js", "esbuild-browser": "esbuild src/index.ts --bundle --minify --sourcemap=external --outfile=dist/netw0rkjs.min.js" }, "devDependencies": { "@types/jest": "^30.0.0", "@types/jsdom": "^21.1.7", "@types/node": "^24.5.2", "@typescript-eslint/eslint-plugin": "^8.44.1", "@typescript-eslint/parser": "^8.44.1", "esbuild": "^0.25.10", "eslint": "^9.36.0", "jest": "^30.2.0", "jsdom": "^27.0.0", "ts-jest": "^29.4.4", "ts-node": "^10.9.2", "tslib": "^2.8.1", "typedoc": "^0.28.13", "typescript": "^5.9.2" } }