-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.43 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.43 KB
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
{
"name": "netw0rkjs",
"author": "Diogny A. B.",
"version": "1.0.11",
"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"
}
}