port-validator
Version:
A port number formatting validator.
73 lines (72 loc) • 1.88 kB
JSON
{
"name": "port-validator",
"version": "0.1.0-beta1",
"description": "A port number formatting validator.",
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "nyc mocha",
"lint": "node ./node_modules/gulp/bin/gulp.js lint",
"docs": "node ./node_modules/gulp/bin/gulp.js docs",
"coverage": "npm run test && nyc report --reporter=text-lcov | coveralls",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0"
},
"pre-commit": [
"precommit-msg",
"lint",
"test",
"coverage"
],
"repository": {
"type": "git",
"url": "git+https://github.com/9fv/node-port-validator.git"
},
"keywords": [
"port",
"socket",
"validation",
"validator",
"network",
"formatting",
"microlibrary"
],
"author": "9 Février <contact@9fevrier.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/9fv/node-port-validator/issues"
},
"homepage": "https://github.com/9fv/node-port-validator#readme",
"devDependencies": {
"coveralls": "^3.0.0",
"current-git-branch": "^1.0.1",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-react": "^7.5.1",
"fs-then-native": "^2.0.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^4.0.1",
"gulp-istanbul": "^1.1.3",
"gulp-load-plugins": "^1.5.0",
"gulp-mocha": "^5.0.0",
"gulp-mustache": "^3.0.1",
"gulp-rename": "^1.2.2",
"gulp-util": "^3.0.8",
"isparta": "^4.0.0",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"pre-commit": "^1.2.2",
"require-dir": "^1.0.0",
"should": "^13.2.1"
},
"dependencies": {
"lodash": "^4.17.4"
}
}