package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "version": "0.0.6",
  3. "license": "MIT",
  4. "main": "dist/index.js",
  5. "typings": "dist/index.d.ts",
  6. "files": [
  7. "dist",
  8. "src"
  9. ],
  10. "engines": {
  11. "node": ">=8"
  12. },
  13. "scripts": {
  14. "start": "tsdx watch",
  15. "build": "tsdx build",
  16. "test": "tsdx test",
  17. "lint": "tsdx lint",
  18. "prepare": "tsdx build"
  19. },
  20. "peerDependencies": {},
  21. "husky": {
  22. "hooks": {
  23. "pre-commit": "tsdx lint"
  24. }
  25. },
  26. "prettier": {
  27. "printWidth": 80,
  28. "semi": true,
  29. "singleQuote": true,
  30. "trailingComma": "es5"
  31. },
  32. "name": "hermes-profile-transformer",
  33. "author": {
  34. "name": "Saphal Patro",
  35. "email": "saphal1998@gmail.com",
  36. "url": "http://github.com/saphal1998"
  37. },
  38. "repository": {
  39. "type": "git",
  40. "url": "https://github.com/MLH-Fellowship/hermes-profile-transformer"
  41. },
  42. "module": "dist/hermes-tracing-profile-transformer.esm.js",
  43. "devDependencies": {
  44. "husky": "^4.2.5",
  45. "tsdx": "^0.13.2",
  46. "tslib": "^2.0.0",
  47. "typescript": "^3.9.5"
  48. },
  49. "dependencies": {
  50. "source-map": "^0.7.3"
  51. },
  52. "keywords": [
  53. "profiling",
  54. "hermes",
  55. "transformation",
  56. "transformers",
  57. "dev-tools"
  58. ]
  59. }