seagull-js/seagull

View on GitHub
packages/test-routes/package.json

Summary

Maintainability
Test Coverage
{
  "name": "@seagull/test-routes",
  "version": "20.0.5",
  "description": "A basic test class for the route implementation of the Seagull Framework",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "build": "rm -rf dist && tsc",
    "test": "echo \"nothing to test\"",
    "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/mode": "^20.0.5",
    "@seagull/pages": "^20.0.5",
    "@seagull/services-http": "^20.0.5",
    "@seagull/testing": "^20.0.5",
    "@seagull/tslint": "^20.0.5"
  },
  "nyc": {
    "extension": [
      ".ts",
      ".tsx"
    ],
    "exclude": [
      "**/*.d.ts",
      "coverage",
      "dist",
      "docs",
      "node_modules",
      "test"
    ],
    "reporter": [
      "html",
      "text",
      "text-summary"
    ]
  },
  "publishConfig": {
    "access": "public"
  },
  "gitHead": "6b4c8f6b18800d7cf7da5920092ad09af64e7647"
}