package.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. {
  2. "name": "@js-sdsl/ordered-map",
  3. "version": "4.4.2",
  4. "description": "javascript standard data structure library which benchmark against C++ STL",
  5. "main": "./dist/cjs/index.js",
  6. "module": "./dist/esm/index.js",
  7. "types": "./dist/esm/index.d.ts",
  8. "author": {
  9. "name": "ZLY201",
  10. "email": "951711127@qq.com",
  11. "url": "https://github.com/js-sdsl/js-sdsl"
  12. },
  13. "sideEffects": false,
  14. "homepage": "https://js-sdsl.org",
  15. "funding": {
  16. "type": "opencollective",
  17. "url": "https://opencollective.com/js-sdsl"
  18. },
  19. "lint-staged": {
  20. "*.{js,ts}": [
  21. "yarn lint"
  22. ]
  23. },
  24. "devDependencies": {
  25. "@babel/core": "^7.19.3",
  26. "@babel/plugin-transform-modules-commonjs": "^7.18.6",
  27. "@rollup/plugin-babel": "^5.3.1",
  28. "@rollup/plugin-typescript": "^9.0.2",
  29. "@types/babel__core": "^7.1.19",
  30. "@types/chai": "^3.5.2",
  31. "@types/delete-empty": "^3.0.2",
  32. "@types/glob": "^8.1.0",
  33. "@types/gulp": "^4.0.9",
  34. "@types/gulp-babel": "^6.1.30",
  35. "@types/gulp-filter": "^3.0.34",
  36. "@types/gulp-rename": "^2.0.1",
  37. "@types/gulp-sourcemaps": "^0.0.35",
  38. "@types/gulp-tap": "^1.0.1",
  39. "@types/gulp-terser": "^1.2.1",
  40. "@types/gulp-uglify": "^3.0.7",
  41. "@types/karma": "^6.3.3",
  42. "@types/merge-stream": "^1.1.2",
  43. "@types/mocha": "^9.1.1",
  44. "@types/node": "^17.0.0",
  45. "@typescript-eslint/eslint-plugin": "^5.33.1",
  46. "@typescript-eslint/parser": "^5.33.1",
  47. "all-contributors-cli": "^6.20.0",
  48. "babel-plugin-remove-unused-import": "^2.1.1",
  49. "browserslist": "^4.21.3",
  50. "chai": "^3.5.0",
  51. "commitlint": "^17.0.3",
  52. "compare-versions": "^5.0.1",
  53. "conventional-changelog-conventionalcommits": "^5.0.0",
  54. "delete-empty": "^3.0.0",
  55. "eslint": "^8.23.1",
  56. "eslint-import-resolver-typescript": "^3.5.2",
  57. "eslint-plugin-compat": "^4.0.2",
  58. "eslint-plugin-import": "^2.26.0",
  59. "get-npm-package-version": "^1.1.1",
  60. "gh-pages": "^3.2.3",
  61. "gulp": "^4.0.2",
  62. "gulp-babel": "^8.0.0",
  63. "gulp-clean": "^0.4.0",
  64. "gulp-filter": "^7.0.0",
  65. "gulp-rename": "^2.0.0",
  66. "gulp-sourcemaps": "^3.0.0",
  67. "gulp-tap": "^2.0.0",
  68. "gulp-terser": "^2.1.0",
  69. "gulp-typescript": "^5.0.0",
  70. "gulp-uglify": "^3.0.2",
  71. "husky": "^8.0.1",
  72. "karma": "^6.4.1",
  73. "karma-chrome-launcher": "^3.1.1",
  74. "karma-edge-launcher": "^0.4.2",
  75. "karma-firefox-launcher": "^2.1.2",
  76. "karma-mocha": "^2.0.1",
  77. "karma-mocha-reporter": "^2.2.5",
  78. "karma-requirejs": "^1.1.0",
  79. "karma-safarinative-launcher": "^1.1.0",
  80. "karma-typescript": "^5.5.3",
  81. "lint-staged": "^13.0.3",
  82. "merge-stream": "^2.0.0",
  83. "mocha": "^9.2.2",
  84. "nyc": "^15.1.0",
  85. "requirejs": "^2.3.6",
  86. "rollup": "^2.79.1",
  87. "rollup-plugin-license": "^3.0.0",
  88. "rollup-plugin-ts": "^3.0.2",
  89. "ts-macros": "^1.3.3",
  90. "ts-mocha": "^10.0.0",
  91. "ts-node": "^10.9.1",
  92. "ts-transform-paths": "^2.0.3",
  93. "tsconfig-paths": "^4.0.0",
  94. "tslib": "^2.4.0",
  95. "ttypescript": "^1.5.13",
  96. "typedoc": "^0.23.10",
  97. "typedoc-plugin-missing-exports": "^1.0.0",
  98. "typescript": "~4.7.4"
  99. },
  100. "repository": {
  101. "type": "github",
  102. "url": "https://github.com/js-sdsl/js-sdsl.git"
  103. },
  104. "license": "MIT",
  105. "keywords": [
  106. "data",
  107. "structure",
  108. "data structure",
  109. "rbTree",
  110. "rbtree",
  111. "RBTree",
  112. "red black tree",
  113. "ordered",
  114. "set",
  115. "map",
  116. "ordered map",
  117. "ordered set",
  118. "deque",
  119. "heap",
  120. "priority queue",
  121. "link list",
  122. "LinkList",
  123. "linkedList",
  124. "vector",
  125. "stack",
  126. "queue",
  127. "hash",
  128. "hash set",
  129. "hash map",
  130. "c++",
  131. "stl"
  132. ],
  133. "bugs": {
  134. "email": "951711127@qq.com",
  135. "url": "https://github.com/js-sdsl/js-sdsl/issues"
  136. },
  137. "dependencies": {}
  138. }