package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "path-to-regexp",
  3. "description": "Express style path to RegExp utility",
  4. "version": "1.8.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. "prepublish": "typings install",
  17. "test": "npm run lint && npm run test-cov"
  18. },
  19. "keywords": [
  20. "express",
  21. "regexp",
  22. "route",
  23. "routing"
  24. ],
  25. "component": {
  26. "scripts": {
  27. "path-to-regexp": "index.js"
  28. }
  29. },
  30. "license": "MIT",
  31. "repository": {
  32. "type": "git",
  33. "url": "https://github.com/pillarjs/path-to-regexp.git"
  34. },
  35. "devDependencies": {
  36. "chai": "^2.3.0",
  37. "istanbul": "~0.3.0",
  38. "mocha": "~2.2.4",
  39. "standard": "~3.7.3",
  40. "ts-node": "^0.5.5",
  41. "typescript": "^1.8.7",
  42. "typings": "^1.0.4"
  43. },
  44. "dependencies": {
  45. "isarray": "0.0.1"
  46. }
  47. }