package.json
1 { 2 "author": "Olivier Poitrey <rs@rhapsodyk.net>", 3 "name": "netmask", 4 "description": "Parse and lookup IP network blocks", 5 "version": "2.0.2", 6 "homepage": "https://github.com/rs/node-netmask", 7 "bugs": "https://github.com/rs/node-netmask/issues", 8 "license": "MIT", 9 "repository": { 10 "type": "git", 11 "url": "git://github.com/rs/node-netmask.git" 12 }, 13 "keywords": [ 14 "net", 15 "mask", 16 "ip", 17 "network", 18 "cidr", 19 "netmask", 20 "subnet", 21 "ipcalc" 22 ], 23 "main": "./lib/netmask", 24 "scripts": { 25 "prepublish": "coffee -c lib/*.coffee", 26 "test": "coffee -c lib/*.coffee && vows --spec test/* && mocha tests/*" 27 }, 28 "engines": { 29 "node": ">= 0.4.0" 30 }, 31 "devDependencies": { 32 "coffee-script": ">=1.2.0", 33 "mocha": "^8.3.2", 34 "vows": "*" 35 } 36 }