bob-gray/serviceberry-json-schema

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "serviceberry-json-schema",
  "version": "1.0.1",
  "description": "A JSON schema validator plugin for Serviceberry",
  "main": "plugin.js",
  "files": [
    "plugin.js"
  ],
  "directories": {
    "test": "spec"
  },
  "scripts": {
    "build": "npm run lint && npm run test:coverage",
    "lint": "eslint plugin.js",
    "lint:spec": "eslint spec/**",
    "test": "jasmine",
    "test:coverage": "nyc --include=plugin.js --reporter=lcov --reporter=text npm test"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bob-gray/serviceberry-json-schema.git"
  },
  "keywords": [
    "http",
    "json",
    "serviceberry",
    "api",
    "rest",
    "validator",
    "plugin",
    "schema"
  ],
  "author": "Bob Gray <gray.bob98@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/bob-gray/serviceberry-json-schema/issues"
  },
  "homepage": "https://github.com/bob-gray/serviceberry-json-schema#readme",
  "peerDependencies": {
    "serviceberry": "*"
  },
  "devDependencies": {
    "eslint": "^7.1.0",
    "jasmine": "^3.5.0",
    "jasmine-spec-reporter": "^5.0.2",
    "node-mocks-http": "^1.8.1",
    "nyc": "^15.1.0",
    "serviceberry": "^0.9.0"
  },
  "dependencies": {
    "ajv": "^6.12.2"
  }
}