package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "@opencensus/core",
  3. "version": "0.0.9",
  4. "description": "OpenCensus is a toolkit for collecting application performance and behavior data.",
  5. "main": "build/src/index.js",
  6. "types": "build/src/index.d.ts",
  7. "repository": "census-instrumentation/opencensus-node",
  8. "scripts": {
  9. "test": "nyc mocha build/test/**/*.js",
  10. "codecov": "nyc report --reporter=json && codecov -f coverage/*.json",
  11. "clean": "rimraf build/*",
  12. "check": "gts check",
  13. "compile": "tsc -p .",
  14. "compile:release": "tsc -p tsconfig-release.json",
  15. "fix": "gts fix",
  16. "prepare": "npm run compile:release",
  17. "pretest": "npm run compile",
  18. "posttest": "npm run check"
  19. },
  20. "keywords": [
  21. "opencensus",
  22. "nodejs",
  23. "tracing",
  24. "profiling",
  25. "metrics",
  26. "stats"
  27. ],
  28. "author": "Google Inc.",
  29. "license": "Apache-2.0",
  30. "engines": {
  31. "node": ">=6.0"
  32. },
  33. "files": [
  34. "build/src/**/*.js",
  35. "build/src/**/*.d.ts",
  36. "doc",
  37. "CHANGELOG.md",
  38. "LICENSE",
  39. "README.md"
  40. ],
  41. "publishConfig": {
  42. "access": "public"
  43. },
  44. "devDependencies": {
  45. "@types/continuation-local-storage": "^3.2.1",
  46. "@types/mocha": "^5.2.5",
  47. "@types/node": "^10.12.12",
  48. "@types/once": "^1.4.0",
  49. "@types/semver": "^5.5.0",
  50. "@types/shimmer": "^1.0.1",
  51. "@types/uuid": "^3.4.3",
  52. "codecov": "^3.1.0",
  53. "gts": "^0.9.0",
  54. "intercept-stdout": "^0.1.2",
  55. "mocha": "^5.0.4",
  56. "ncp": "^2.0.0",
  57. "nyc": "13.1.0",
  58. "ts-node": "^7.0.1",
  59. "typescript": "~2.9.0"
  60. },
  61. "dependencies": {
  62. "continuation-local-storage": "^3.2.1",
  63. "log-driver": "^1.2.7",
  64. "semver": "^5.5.0",
  65. "shimmer": "^1.2.0",
  66. "uuid": "^3.2.1"
  67. }
  68. }