package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. {
  2. "_from": "splaytree@^3.1.0",
  3. "_id": "splaytree@3.1.2",
  4. "_inBundle": false,
  5. "_integrity": "sha512-4OM2BJgC5UzrhVnnJA4BkHKGtjXNzzUfpQjCO8I05xYPsfS/VuQDwjCGGMi8rYQilHEV4j8NBqTFbls/PZEE7A==",
  6. "_location": "/splaytree",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "splaytree@^3.1.0",
  12. "name": "splaytree",
  13. "escapedName": "splaytree",
  14. "rawSpec": "^3.1.0",
  15. "saveSpec": null,
  16. "fetchSpec": "^3.1.0"
  17. },
  18. "_requiredBy": [
  19. "/polygon-clipping"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/splaytree/-/splaytree-3.1.2.tgz",
  22. "_shasum": "d1db2691665a3c69d630de98d55145a6546dc166",
  23. "_spec": "splaytree@^3.1.0",
  24. "_where": "F:\\project\\node_util\\node_modules\\polygon-clipping",
  25. "author": {
  26. "name": "Alexander Milevski",
  27. "email": "info@w8r.name"
  28. },
  29. "browser": "dist/splay.js",
  30. "bugs": {
  31. "url": "https://github.com/w8r/splay-tree/issues"
  32. },
  33. "bundleDependencies": false,
  34. "dependencies": {},
  35. "deprecated": false,
  36. "description": "Fast Splay tree for Node and browser",
  37. "devDependencies": {
  38. "@types/chai": "^4.1.4",
  39. "@types/mocha": "^5.2.2",
  40. "avl": "^1.4.4",
  41. "benchmark": "^2.1.4",
  42. "bintrees": "^1.0.2",
  43. "chai": "^4.2.0",
  44. "codecov": "^3.8.3",
  45. "mocha": "^6.2.0",
  46. "nodemon": "^2.0.20",
  47. "nyc": "^14.1.1",
  48. "reify": "*",
  49. "rollup": "*",
  50. "rollup-plugin-typescript2": "^0.24.1",
  51. "ts-node": "^6.1.1",
  52. "tslib": "^1.9.3",
  53. "tslint": "^5.14.0",
  54. "typescript": "^2.9.2"
  55. },
  56. "directories": {
  57. "test": "test",
  58. "typings": "typings"
  59. },
  60. "files": [
  61. "dist",
  62. "typings",
  63. "src"
  64. ],
  65. "homepage": "https://github.com/w8r/splay-tree#readme",
  66. "keywords": [
  67. "binary-tree",
  68. "bst",
  69. "splay-tree",
  70. "splay",
  71. "balanced-search-tree"
  72. ],
  73. "license": "MIT",
  74. "main": "dist/splay.js",
  75. "mocha": {
  76. "require": [
  77. "ts-node/register"
  78. ]
  79. },
  80. "module": "dist/splay.esm.js",
  81. "name": "splaytree",
  82. "nyc": {
  83. "include": [
  84. "src/*.ts"
  85. ],
  86. "exclude": [
  87. "tests/**/*.ts"
  88. ],
  89. "extension": [
  90. ".ts"
  91. ],
  92. "require": [
  93. "ts-node/register"
  94. ],
  95. "reporter": [
  96. "text-summary",
  97. "html"
  98. ],
  99. "sourceMap": true,
  100. "instrument": true
  101. },
  102. "repository": {
  103. "type": "git",
  104. "url": "git+https://github.com/w8r/splay-tree.git"
  105. },
  106. "scripts": {
  107. "benchmark": "node -r reify bench/benchmark.js",
  108. "build": "rollup -c && npm run types",
  109. "clean": "rm -rf dist coverage .nyc",
  110. "coverage": "codecov -f coverage/*.json",
  111. "lint": "tslint --project tsconfig.json ./src/*.ts",
  112. "posttest": "nyc report --reporter=json",
  113. "prebenchmark": "npm run build",
  114. "prepublishOnly": "npm run build && npm test",
  115. "start": "npm run test:watch",
  116. "test": "nyc mocha tests/**/*.test.ts",
  117. "test:watch": "nodemon --watch index.js --watch tests --exec 'npm test'",
  118. "types": "tsc --declaration --emitDeclarationOnly"
  119. },
  120. "types": "typings/index.d.ts",
  121. "unpkg": "dist/splay.js",
  122. "version": "3.1.2"
  123. }