seagull-js/seagull

View on GitHub
packages/routes/package.json

Summary

Maintainability
Test Coverage
{
  "name": "@seagull/routes",
  "version": "20.0.5",
  "description": "Routing functionalities for the Seagull Framework",
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "scripts": {
    "build": "rm -rf dist && tsc",
    "test": "tslint --fix src/**/*.ts test/**/*.ts && mocha --opts test/mocha.opts",
    "test:coverage": "tslint --fix src/**/*.ts test/**/*.ts && nyc mocha --opts test/mocha.opts",
    "test:watch": "npm run test -- --watch --reporter min",
    "docs": "rm -rf docs && typedoc --mode modules --ignoreCompilerErrors --excludeExternals --excludePrivate --excludeNotExported --out docs src"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/seagull-js/seagull.git"
  },
  "keywords": [
    "web",
    "framework",
    "web framework",
    "serverless",
    "cloud",
    "aws",
    "react",
    "react.js",
    "isomorphic"
  ],
  "author": "Maximilian Stroh",
  "license": "LGPL-3.0",
  "bugs": {
    "url": "https://github.com/seagull-js/seagull/issues"
  },
  "homepage": "https://github.com/seagull-js/seagull#readme",
  "devDependencies": {
    "@seagull/mock-process": "^20.0.5",
    "@seagull/mode": "^20.0.5",
    "@seagull/pages": "^20.0.5",
    "@seagull/test-routes": "^20.0.5",
    "@seagull/tslint": "^20.0.5",
    "@types/express": "^4.16.0",
    "@types/lodash": "^4.14.123",
    "mock-fs": "^4.5.0"
  },
  "dependencies": {
    "@seagull/commands-fs": "^20.0.5",
    "@seagull/libraries": "^20.0.5",
    "@seagull/services-http": "^20.0.5",
    "@seagull/services-soap": "^20.0.5",
    "body-parser": "^1.18.3",
    "class-validator": "^0.11.0",
    "express": "^4.16.3",
    "lodash": "^4.17.5",
    "node-mocks-http": "^1.7.2",
    "require-from-string": "^2.0.2"
  },
  "nyc": {
    "extension": [
      ".ts",
      ".tsx"
    ],
    "exclude": [
      "**/*.d.ts",
      "coverage",
      "dist",
      "docs",
      "node_modules",
      "test"
    ],
    "reporter": [
      "html",
      "text",
      "text-summary"
    ]
  },
  "publishConfig": {
    "access": "public"
  },
  "gitHead": "6b4c8f6b18800d7cf7da5920092ad09af64e7647"
}