{ "name": "cidr-regex", "version": "1.0.7", "description": "Regular expression for matching CIDR (Classless Inter-Domain Routing)", "main": "lib/index.js", "scripts": { "commit": "git-cz", "prebuild": "npm run lint && npm run clean", "build": "babel --presets es2015 -d lib/ src/", "clean": "rimraf lib && mkdir lib", "lint": "eslint src/ test/", "test": "ava --require babel-register", "semantic-release": "semantic-release pre && npm publish && semantic-release post" }, "repository": { "type": "git", "url": "https://github.com/flipjs/cidr-regex.git" }, "keywords": [ "ip", "ip address", "cidr", "netblock", "regex" ], "author": "Felipe Apostol (http://flipjs.io/)", "license": "MIT", "bugs": { "url": "https://github.com/flipjs/cidr-regex/issues" }, "homepage": "https://github.com/flipjs/cidr-regex#readme", "devDependencies": { "ava": "0.13.0", "babel-cli": "6.6.5", "babel-preset-es2015": "6.6.0", "babel-register": "6.7.2", "commitizen": "2.7.3", "cz-conventional-changelog": "1.1.5", "eslint": "2.4.0", "eslint-config-standard": "5.1.0", "eslint-plugin-babel": "3.1.0", "eslint-plugin-promise": "1.1.0", "eslint-plugin-standard": "1.3.2", "ghooks": "1.0.3", "rimraf": "2.5.2", "semantic-release": "4.3.5" }, "babel": { "presets": [ "es2015" ] }, "config": { "commitizen": { "path": "node_modules/cz-conventional-changelog" }, "ghooks": { "pre-commit": "npm run test && npm run build" } } }