XPBytes/express-routes-archive

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@xpbytes/express-routes-archive",
  "version": "3.0.0",
  "description": "Utility class to register routes and dynamically generate their URL or path from anywhere in the express app",
  "main": "dist/RoutesArchive.js",
  "module": "dist/RoutesArchive.js",
  "repository": "https://github.com/XPBytes/express-routes-archive",
  "author": "Derk-Jan Karrenbeld <derk-jan@xpbytes.com>",
  "license": "MIT",
  "files": [
    "README.md",
    "LICENSE",
    "/dist"
  ],
  "scripts": {
    "prebuild": "rimraf dist",
    "build": "tsc",
    "prebuild:test": "rimraf tests/dist",
    "build:test": "tsc --project tests/tsconfig.json",
    "lint": "eslint src",
    "pretest": "yarn build:test",
    "test": "tape tests/dist/**/*.test.js",
    "prepublish": "yarn test && yarn lint && yarn build"
  },
  "peerDependencies": {
    "@types/express": "^4.17.8",
    "@types/express-serve-static-core": "^4.17.13",
    "@types/node": "^14.11.10"
  },
  "devDependencies": {
    "@types/express": "^4.17.8",
    "@types/express-serve-static-core": "^4.17.19",
    "@types/node": "^15.3.0",
    "@types/tape": "^4.13.0",
    "@typescript-eslint/eslint-plugin": "^4.25.0",
    "@typescript-eslint/parser": "^4.25.0",
    "eslint": "^7.27.0",
    "eslint-config-prettier": "^7.2.0",
    "prettier": "^2.3.0",
    "rimraf": "^3.0.2",
    "tape": "^5.2.2",
    "typescript": "^4.2.4"
  },
  "dependencies": {}
}