-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 874 Bytes
/
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
{
"name": "netmask6",
"version": "0.0.3",
"description": "Parse IPv4/IPv6 CIDR",
"main": "index.js",
"module": "main.js",
"author": "Andrew Savchyn <[email protected]>",
"keywords": [
"net",
"mask",
"ip",
"network",
"cidr",
"netmask",
"subnet",
"ipcalc"
],
"repository": {
"type": "git",
"url": "git://github.com/scorpil/netmask6.git"
},
"license": "MIT",
"scripts": {
"prepublish": "yarn build",
"test": "mocha --require @babel/register",
"build": "babel src -d lib"
},
"devDependencies": {
"@babel/cli": "^7.11.5",
"@babel/core": "^7.11.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/register": "^7.11.5",
"mocha": "^8.1.3"
},
"dependencies": {},
"engines": {
"node": ">= 10.8.0"
}
}