package.json 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. {
  2. "name": "@pm2/io",
  3. "version": "5.0.0",
  4. "description": "PM2.io NodeJS APM",
  5. "main": "build/main/index.js",
  6. "typings": "build/main/index.d.ts",
  7. "types": "build/main/index.d.ts",
  8. "module": "build/module/index.js",
  9. "repository": "https://github.com/keymetrics/pm2-io-apm",
  10. "author": {
  11. "name": "PM2.io tech team",
  12. "email": "tech@pm2.io",
  13. "url": "https://pm2.io"
  14. },
  15. "contributors": [
  16. {
  17. "name": "Vincent Vallet",
  18. "url": "https://github.com/wallet77"
  19. }
  20. ],
  21. "license": "Apache-2",
  22. "scripts": {
  23. "build": "tsc -p tsconfig.json",
  24. "build:module": "tsc -p config/exports/tsconfig.module.json",
  25. "lint": "tslint --project . src/**/*.ts",
  26. "unit": "npm run build && bash test.sh",
  27. "mono": "mocha --exit --require ts-node/register",
  28. "test": "npm run unit",
  29. "watch": "tsc -w",
  30. "prepublishOnly": "npm run build"
  31. },
  32. "scripts-info": {
  33. "build": "(Trash and re)build the library",
  34. "lint": "Lint all typescript source files",
  35. "unit": "Build the library and run unit tests",
  36. "test": "Lint, build, and test the library",
  37. "watch": "Watch source files, rebuild library on changes, rerun relevant tests"
  38. },
  39. "engines": {
  40. "node": ">=6.0"
  41. },
  42. "devDependencies": {
  43. "@pm2/node-runtime-stats": "^0.3.2",
  44. "@types/chai": "4.1.4",
  45. "@types/express": "~4.16.1",
  46. "@types/ioredis": "~4.0.6",
  47. "@types/mocha": "5.2.5",
  48. "@types/mongodb": "~3.1.19",
  49. "@types/node": "~10.12.21",
  50. "@types/redis": "~2.8.10",
  51. "chai": "4.1.2",
  52. "express": "^4.17.1",
  53. "ioredis": "^4.16.3",
  54. "koa": "^2.11.0",
  55. "mocha": "~7.1.0",
  56. "mongodb-core": "^3.2.7",
  57. "mysql": "~2.18.1",
  58. "mysql2": "~2.1.0",
  59. "nock": "~10.0.6",
  60. "nyc": "~13.1.0",
  61. "pg": "^7.18.2",
  62. "redis": "^3.0.2",
  63. "source-map-support": "~0.5.9",
  64. "ts-node": "~7.0.1",
  65. "tslint": "~5.11.0",
  66. "tslint-config-standard": "~8.0.1",
  67. "typescript": "~3.2.2",
  68. "vue": "^2.6.11",
  69. "vue-server-renderer": "^2.6.11"
  70. },
  71. "keywords": [],
  72. "nyc": {
  73. "extension": [
  74. ".ts"
  75. ],
  76. "exclude": [
  77. "build/",
  78. "config/",
  79. "examples/",
  80. "test/"
  81. ],
  82. "cache": true,
  83. "all": true
  84. },
  85. "dependencies": {
  86. "@opencensus/core": "0.0.9",
  87. "@opencensus/propagation-b3": "0.0.8",
  88. "async": "~2.6.1",
  89. "debug": "~4.3.1",
  90. "eventemitter2": "^6.3.1",
  91. "require-in-the-middle": "^5.0.0",
  92. "semver": "6.3.0",
  93. "shimmer": "^1.2.0",
  94. "signal-exit": "^3.0.3",
  95. "tslib": "1.9.3"
  96. }
  97. }