freddi301/flow-validator

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "flow-validator",
  "version": "0.6.2",
  "description": "object validation with flow types and more",
  "main": "lib/index.js",
  "files": [
    "src",
    "lib"
  ],
  "scripts": {
    "eslint": "eslint .",
    "flow": "flow check .",
    "checkdeps": "nsp check",
    "test": "mocha --recursive",
    "test:file": "mocha",
    "coverage": "nyc mocha",
    "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
    "codeclimate:coverage": "nyc npm test && nyc report --reporter=text-lcov | codeclimate-test-reporter",
    "coverage:ci": "nyc npm test && nyc report --reporter=text-lcov | coveralls && nyc report --reporter=text-lcov | codeclimate-test-reporter",
    "build": "rm -rf lib/* && babel src -d lib --source-maps && flow-copy-source -v src lib",
    "doc:serve": "documentation serve src -g --document-exported -w -f html",
    "doc:lint": "documentation lint src -g",
    "doc:build": "rm -r doc/*; mv src/index.js src/index; documentation build src -g --document-exported -f html -o doc --sort-order alpha; mv src/index src/index.js",
    "doc:publish": "./scripts/doc_build.sh && git push origin gh-pages:gh-pages",
    "precommit": "npm run prettier:precommit && npm run doc:lint && npm run eslint && npm run flow && npm run checkdeps && npm test && npm run coverage && npm run build",
    "prepublish": "npm run precommit",
    "postpublish": "npm run doc:publish && npm run release:notes",
    "bithound": "bithound check git@github.com:freddi301/flow-validator.git",
    "release:notes": "release",
    "prettier:precommit": "git diff --name-only HEAD | grep \".*\\.js\" | xargs prettier --write"
  },
  "tags": [
    "flow",
    "flowtype",
    "js",
    "javascript",
    "schema",
    "object",
    "validation",
    "validate",
    "validator",
    "async",
    "pattern-matching"
  ],
  "keywords": [
    "flow",
    "flowtype",
    "js",
    "javascript",
    "schema",
    "object",
    "validation",
    "validate",
    "validator",
    "async",
    "pattern-matching"
  ],
  "author": "Frederik Batuna <gobi301@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/freddi301/flow-validator.git"
  },
  "bugs": {
    "url": "https://github.com/freddi301/flow-validator/issues"
  },
  "homepage": "https://github.com/freddi301/flow-validator#readme",
  "devDependencies": {
    "babel-cli": "6.24.1",
    "babel-core": "6.25.0",
    "babel-eslint": "7.2.3",
    "babel-plugin-transform-builtin-extend": "1.1.2",
    "babel-plugin-transform-flow-strip-types": "6.22.0",
    "babel-plugin-transform-object-rest-spread": "^6.23.0",
    "babel-plugin-transform-runtime": "^6.23.0",
    "babel-preset-env": "^1.2.0",
    "bithound": "^1.7.0",
    "chai": "4.0.2",
    "codeclimate-test-reporter": "0.5.0",
    "coveralls": "2.13.1",
    "documentation": "4.0.0-beta.18",
    "eslint": "4.0.0",
    "eslint-plugin-flowtype": "2.34.0",
    "flow-bin": "0.54.0",
    "flow-copy-source": "^1.1.0",
    "flow-typed": "^2.1.2",
    "husky": "^0.13.2",
    "istanbul": "0.4.5",
    "mocha": "3.4.2",
    "nsp": "2.6.3",
    "nyc": "11.0.2",
    "prettier": "^1.5.3",
    "release": "^1.2.3"
  },
  "dependencies": {}
}