package.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "name": "web-vitals",
  3. "version": "2.1.3",
  4. "description": "Easily measure performance metrics in JavaScript",
  5. "main": "dist/web-vitals.umd.js",
  6. "module": "dist/web-vitals.js",
  7. "typings": "dist/modules/index.d.ts",
  8. "files": [
  9. "base.js",
  10. "base.d.ts",
  11. "dist",
  12. "src"
  13. ],
  14. "scripts": {
  15. "build": "run-s clean build:ts build:js",
  16. "build:ts": "tsc -b",
  17. "build:js": "rollup -c",
  18. "clean": "rm -rf dist tsconfig.tsbuildinfo",
  19. "dev": "run-p watch test:server",
  20. "lint": "eslint \"*.js\" \"src/**/*.ts\" \"test/**/*.js\"",
  21. "lint:fix": "eslint --fix \"*.js\" \"src/**/*.ts\" \"test/**/*.js\"",
  22. "postversion": "git push --follow-tags",
  23. "release:major": "npm version major -m 'Release v%s' && npm publish",
  24. "release:minor": "npm version minor -m 'Release v%s' && npm publish",
  25. "release:patch": "npm version patch -m 'Release v%s' && npm publish",
  26. "test": "npm-run-all build -p -r test:*",
  27. "test:e2e": "wdio wdio.conf.js",
  28. "test:server": "node test/server.js",
  29. "start": "run-s build:ts test:server watch",
  30. "watch": "run-p watch:*",
  31. "watch:ts": "tsc -b -w",
  32. "watch:js": "rollup -c -w",
  33. "version": "run-s build",
  34. "prepare": "husky install"
  35. },
  36. "keywords": [
  37. "crux",
  38. "performance",
  39. "metrics",
  40. "CLS",
  41. "FCP",
  42. "FID",
  43. "LCP",
  44. "TTFB"
  45. ],
  46. "author": {
  47. "name": "Philip Walton",
  48. "email": "philip@philipwalton.com",
  49. "url": "http://philipwalton.com"
  50. },
  51. "license": "Apache-2.0",
  52. "repository": {
  53. "type": "git",
  54. "url": "https://github.com/GoogleChrome/web-vitals.git"
  55. },
  56. "bugs": {
  57. "url": "https://github.com/GoogleChrome/web-vitals/issues"
  58. },
  59. "husky": {
  60. "hooks": {
  61. "pre-commit": "npm run lint"
  62. }
  63. },
  64. "devDependencies": {
  65. "@babel/core": "^7.16.7",
  66. "@babel/preset-env": "^7.16.7",
  67. "@rollup/plugin-replace": "^3.0.1",
  68. "@typescript-eslint/eslint-plugin": "^5.9.0",
  69. "@typescript-eslint/parser": "^5.9.0",
  70. "@wdio/cli": "^7.16.12",
  71. "@wdio/local-runner": "^7.16.12",
  72. "@wdio/mocha-framework": "^7.16.11",
  73. "@wdio/selenium-standalone-service": "^7.16.11",
  74. "@wdio/spec-reporter": "^7.16.11",
  75. "body-parser": "^1.19.1",
  76. "chromedriver": "^97.0.0",
  77. "eslint": "^8.6.0",
  78. "eslint-config-google": "^0.14.0",
  79. "express": "^4.17.2",
  80. "fs-extra": "^10.0.0",
  81. "husky": "^7.0.4",
  82. "npm-run-all": "^4.1.5",
  83. "nunjucks": "^3.2.3",
  84. "rollup": "^2.63.0",
  85. "rollup-plugin-babel": "^4.4.0",
  86. "rollup-plugin-terser": "^7.0.2",
  87. "typescript": "^4.5.4",
  88. "wdio-chromedriver-service": "^7.2.6"
  89. }
  90. }