-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.06 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.06 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
{
"author": "Olivier Poitrey <rs@rhapsodyk.net>",
"name": "netmask",
"description": "Parse and lookup IP network blocks",
"version": "2.1.1",
"homepage": "https://github.com/rs/node-netmask",
"bugs": "https://github.com/rs/node-netmask/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/rs/node-netmask.git"
},
"keywords": [
"net",
"mask",
"ip",
"network",
"cidr",
"netmask",
"subnet",
"ipcalc"
],
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"main": "./dist/netmask",
"types": "./dist/netmask.d.ts",
"scripts": {
"prepublish": "tsc",
"test": "tsc && mocha --require ts-node/register tests/*.ts"
},
"engines": {
"node": ">= 0.4.0"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^18.0.0",
"mocha": "^10.2.0",
"ts-node": "^10.0.0",
"typescript": "^5.0.0"
}
}