package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "path-to-regexp",
  3. "description": "Express style path to RegExp utility",
  4. "version": "2.4.0",
  5. "main": "index.js",
  6. "typings": "index.d.ts",
  7. "files": [
  8. "index.js",
  9. "index.d.ts",
  10. "LICENSE"
  11. ],
  12. "scripts": {
  13. "lint": "standard",
  14. "test-spec": "mocha --require ts-node/register -R spec --bail test.ts",
  15. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require ts-node/register -R spec test.ts",
  16. "test": "npm run lint && npm run test-cov"
  17. },
  18. "keywords": [
  19. "express",
  20. "regexp",
  21. "route",
  22. "routing"
  23. ],
  24. "component": {
  25. "scripts": {
  26. "path-to-regexp": "index.js"
  27. }
  28. },
  29. "license": "MIT",
  30. "repository": {
  31. "type": "git",
  32. "url": "https://github.com/pillarjs/path-to-regexp.git"
  33. },
  34. "devDependencies": {
  35. "@types/chai": "^4.0.4",
  36. "@types/mocha": "^5.2.5",
  37. "@types/node": "^10.7.1",
  38. "chai": "^4.1.1",
  39. "istanbul": "^0.4.5",
  40. "mocha": "^5.2.0",
  41. "standard": "^11.0.1",
  42. "ts-node": "^7.0.1",
  43. "typescript": "^3.0.1"
  44. }
  45. }