-
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) · 865 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 865 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": "@cldn/ip",
"version": "0.0.0-dev",
"description": "IP address utility",
"main": "dist/index.js",
"type": "module",
"files": [
"dist/**.js",
"dist/**.d.ts"
],
"scripts": {
"build": "tsc",
"docs": "typedoc src",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudnode-pro/ip.git"
},
"keywords": [
"ip",
"cidr",
"subnet",
"network",
"net",
"ipcalc",
"netmask",
"ipv4",
"ipv6"
],
"author": "Cloudnode",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/cloudnode-pro/ip/issues"
},
"homepage": "https://github.com/cloudnode-pro/ip#readme",
"devDependencies": {
"chai": "^5.1.2",
"mocha": "^11.0.1",
"typedoc": "^0.28.0",
"typedoc-plugin-mdn-links": "^5.0.1",
"typescript": "^5.6.3"
}
}