package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "@opencensus/propagation-b3",
  3. "version": "0.0.8",
  4. "description": "Opencensus propagation package for B3 format.",
  5. "main": "build/src/index.js",
  6. "types": "build/src/index.d.ts",
  7. "repository": "census-instrumentation/opencensus-node",
  8. "scripts": {
  9. "test": "nyc -x '**/test/**' --reporter=html --reporter=text mocha 'build/test/**/*.js'",
  10. "clean": "rimraf build/*",
  11. "check": "gts check",
  12. "compile": "tsc -p .",
  13. "fix": "gts fix",
  14. "prepare": "npm run compile",
  15. "pretest": "npm run compile",
  16. "posttest": "npm run check"
  17. },
  18. "keywords": [
  19. "opencensus",
  20. "nodejs",
  21. "tracing",
  22. "profiling"
  23. ],
  24. "author": "Google Inc.",
  25. "license": "Apache-2.0",
  26. "engines": {
  27. "node": ">=6.0"
  28. },
  29. "files": [
  30. "build/src/**/*.js",
  31. "build/src/**/*.d.ts",
  32. "doc",
  33. "CHANGELOG.md",
  34. "LICENSE",
  35. "README.md"
  36. ],
  37. "publishConfig": {
  38. "access": "public"
  39. },
  40. "devDependencies": {
  41. "@types/mocha": "^5.2.5",
  42. "@types/node": "^10.12.12",
  43. "@types/uuid": "^3.4.3",
  44. "gts": "^0.9.0",
  45. "mocha": "^5.0.4",
  46. "ncp": "^2.0.0",
  47. "nyc": "^11.7.1",
  48. "rimraf": "^2.6.2",
  49. "ts-node": "^7.0.1",
  50. "typescript": "~2.7.2"
  51. },
  52. "dependencies": {
  53. "@opencensus/core": "^0.0.8",
  54. "uuid": "^3.2.1"
  55. }
  56. }