package.json 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. {
  2. "_from": "web-vitals@^1.0.1",
  3. "_id": "web-vitals@1.1.2",
  4. "_inBundle": false,
  5. "_integrity": "sha512-PFMKIY+bRSXlMxVAQ+m2aw9c/ioUYfDgrYot0YUa+/xa0sakubWhSDyxAKwzymvXVdF4CZI71g06W+mqhzu6ig==",
  6. "_location": "/web-vitals",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "web-vitals@^1.0.1",
  12. "name": "web-vitals",
  13. "escapedName": "web-vitals",
  14. "rawSpec": "^1.0.1",
  15. "saveSpec": null,
  16. "fetchSpec": "^1.0.1"
  17. },
  18. "_requiredBy": [
  19. "#USER",
  20. "/"
  21. ],
  22. "_resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-1.1.2.tgz",
  23. "_shasum": "06535308168986096239aa84716e68b4c6ae6d1c",
  24. "_spec": "web-vitals@^1.0.1",
  25. "_where": "C:\\Users\\rickh\\Desktop\\js-hw-1\\hw1",
  26. "author": {
  27. "name": "Philip Walton",
  28. "email": "philip@philipwalton.com",
  29. "url": "http://philipwalton.com"
  30. },
  31. "bugs": {
  32. "url": "https://github.com/GoogleChrome/web-vitals/issues"
  33. },
  34. "bundleDependencies": false,
  35. "deprecated": false,
  36. "description": "Easily measure performance metrics in JavaScript",
  37. "devDependencies": {
  38. "@babel/core": "^7.13.10",
  39. "@babel/preset-env": "^7.13.10",
  40. "@rollup/plugin-replace": "^2.4.1",
  41. "@typescript-eslint/eslint-plugin": "^4.17.0",
  42. "@typescript-eslint/parser": "^4.17.0",
  43. "@wdio/cli": "^7.1.2",
  44. "@wdio/local-runner": "^7.1.2",
  45. "@wdio/mocha-framework": "^7.1.2",
  46. "@wdio/selenium-standalone-service": "^7.1.1",
  47. "@wdio/spec-reporter": "^7.1.1",
  48. "babel-eslint": "^10.1.0",
  49. "body-parser": "^1.19.0",
  50. "chromedriver": "^89.0.0",
  51. "eslint": "^7.22.0",
  52. "eslint-config-google": "^0.14.0",
  53. "express": "^4.17.1",
  54. "fs-extra": "^9.1.0",
  55. "husky": "^5.1.3",
  56. "npm-run-all": "^4.1.5",
  57. "nunjucks": "^3.2.3",
  58. "rollup": "^2.41.2",
  59. "rollup-plugin-babel": "^4.4.0",
  60. "rollup-plugin-terser": "^7.0.2",
  61. "typescript": "^4.2.3",
  62. "wdio-chromedriver-service": "^7.0.0"
  63. },
  64. "files": [
  65. "base.js",
  66. "base.d.ts",
  67. "dist",
  68. "src"
  69. ],
  70. "homepage": "https://github.com/GoogleChrome/web-vitals#readme",
  71. "husky": {
  72. "hooks": {
  73. "pre-commit": "npm run lint"
  74. }
  75. },
  76. "keywords": [
  77. "crux",
  78. "performance",
  79. "metrics",
  80. "CLS",
  81. "FCP",
  82. "FID",
  83. "LCP",
  84. "TTFB"
  85. ],
  86. "license": "Apache-2.0",
  87. "main": "dist/web-vitals.umd.js",
  88. "module": "dist/web-vitals.js",
  89. "name": "web-vitals",
  90. "repository": {
  91. "type": "git",
  92. "url": "git+https://github.com/GoogleChrome/web-vitals.git"
  93. },
  94. "scripts": {
  95. "build": "run-s clean build:ts build:js",
  96. "build:js": "rollup -c",
  97. "build:ts": "tsc -b",
  98. "clean": "rm -rf dist tsconfig.tsbuildinfo",
  99. "dev": "run-p watch test:server",
  100. "lint": "eslint \"*.js\" \"src/**/*.ts\" \"test/**/*.js\"",
  101. "lint:fix": "eslint --fix \"*.js\" \"src/**/*.ts\" \"test/**/*.js\"",
  102. "postversion": "git push --follow-tags",
  103. "prepare": "husky install",
  104. "release:major": "npm version major -m 'Release v%s' && npm publish",
  105. "release:minor": "npm version minor -m 'Release v%s' && npm publish",
  106. "release:patch": "npm version patch -m 'Release v%s' && npm publish",
  107. "start": "run-p watch test:server",
  108. "test": "npm-run-all build -p -r test:*",
  109. "test:e2e": "wdio wdio.conf.js",
  110. "test:server": "node test/server.js",
  111. "version": "run-s build",
  112. "watch": "run-p watch:*",
  113. "watch:js": "rollup -c -w",
  114. "watch:ts": "tsc -b -w"
  115. },
  116. "typings": "dist/modules/index.d.ts",
  117. "version": "1.1.2"
  118. }