package.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. {
  2. "_args": [
  3. [
  4. "longest-streak@2.0.4",
  5. "D:\\Revathi_26-12-2022\\Task1\\laps-bpm\\BPM-UI"
  6. ]
  7. ],
  8. "_from": "longest-streak@2.0.4",
  9. "_id": "longest-streak@2.0.4",
  10. "_inBundle": false,
  11. "_integrity": "sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==",
  12. "_location": "/longest-streak",
  13. "_phantomChildren": {},
  14. "_requested": {
  15. "type": "version",
  16. "registry": true,
  17. "raw": "longest-streak@2.0.4",
  18. "name": "longest-streak",
  19. "escapedName": "longest-streak",
  20. "rawSpec": "2.0.4",
  21. "saveSpec": null,
  22. "fetchSpec": "2.0.4"
  23. },
  24. "_requiredBy": [
  25. "/remark-stringify"
  26. ],
  27. "_resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.4.tgz",
  28. "_spec": "2.0.4",
  29. "_where": "D:\\Revathi_26-12-2022\\Task1\\laps-bpm\\BPM-UI",
  30. "author": {
  31. "name": "Titus Wormer",
  32. "email": "tituswormer@gmail.com",
  33. "url": "https://wooorm.com"
  34. },
  35. "bugs": {
  36. "url": "https://github.com/wooorm/longest-streak/issues"
  37. },
  38. "contributors": [
  39. {
  40. "name": "Titus Wormer",
  41. "email": "tituswormer@gmail.com",
  42. "url": "https://wooorm.com"
  43. }
  44. ],
  45. "dependencies": {},
  46. "description": "Count the longest repeating streak of a character",
  47. "devDependencies": {
  48. "browserify": "^16.0.0",
  49. "nyc": "^15.0.0",
  50. "prettier": "^1.0.0",
  51. "remark-cli": "^7.0.0",
  52. "remark-preset-wooorm": "^6.0.0",
  53. "tape": "^4.0.0",
  54. "tinyify": "^2.0.0",
  55. "xo": "^0.25.0"
  56. },
  57. "files": [
  58. "index.js"
  59. ],
  60. "funding": {
  61. "type": "github",
  62. "url": "https://github.com/sponsors/wooorm"
  63. },
  64. "homepage": "https://github.com/wooorm/longest-streak#readme",
  65. "keywords": [
  66. "count",
  67. "length",
  68. "longest",
  69. "repeating",
  70. "streak",
  71. "character"
  72. ],
  73. "license": "MIT",
  74. "name": "longest-streak",
  75. "nyc": {
  76. "check-coverage": true,
  77. "lines": 100,
  78. "functions": 100,
  79. "branches": 100
  80. },
  81. "prettier": {
  82. "tabWidth": 2,
  83. "useTabs": false,
  84. "singleQuote": true,
  85. "bracketSpacing": false,
  86. "semi": false,
  87. "trailingComma": "none"
  88. },
  89. "remarkConfig": {
  90. "plugins": [
  91. "preset-wooorm"
  92. ]
  93. },
  94. "repository": {
  95. "type": "git",
  96. "url": "git+https://github.com/wooorm/longest-streak.git"
  97. },
  98. "scripts": {
  99. "build": "npm run build-bundle && npm run build-mangle",
  100. "build-bundle": "browserify . -s longestStreak -o longest-streak.js",
  101. "build-mangle": "browserify . -s longestStreak -p tinyify -o longest-streak.min.js",
  102. "format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
  103. "test": "npm run format && npm run build && npm run test-coverage",
  104. "test-api": "node test",
  105. "test-coverage": "nyc --reporter lcov tape test.js"
  106. },
  107. "version": "2.0.4",
  108. "xo": {
  109. "prettier": true,
  110. "esnext": false,
  111. "ignores": [
  112. "longest-streak.js"
  113. ]
  114. }
  115. }