package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "symbol-tree",
  3. "version": "3.2.4",
  4. "description": "Turn any collection of objects into its own efficient tree or linked list using Symbol",
  5. "main": "lib/SymbolTree.js",
  6. "scripts": {
  7. "lint": "eslint lib test",
  8. "test": "istanbul cover test/SymbolTree.js",
  9. "posttest": "npm run lint",
  10. "ci": "istanbul cover test/SymbolTree.js --report lcovonly && cat ./coverage/lcov.info | coveralls",
  11. "postci": "npm run posttest",
  12. "predocumentation": "cp readme-header.md README.md",
  13. "documentation": "jsdoc2md --files lib/SymbolTree.js >> README.md"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/jsdom/js-symbol-tree.git"
  18. },
  19. "keywords": [
  20. "list",
  21. "queue",
  22. "stack",
  23. "linked-list",
  24. "tree",
  25. "es6",
  26. "dom",
  27. "symbol"
  28. ],
  29. "files": [
  30. "lib"
  31. ],
  32. "author": "Joris van der Wel <joris@jorisvanderwel.com>",
  33. "license": "MIT",
  34. "bugs": {
  35. "url": "https://github.com/jsdom/js-symbol-tree/issues"
  36. },
  37. "homepage": "https://github.com/jsdom/js-symbol-tree#symbol-tree",
  38. "devDependencies": {
  39. "babel-eslint": "^10.0.1",
  40. "coveralls": "^3.0.0",
  41. "eslint": "^5.16.0",
  42. "eslint-plugin-import": "^2.2.0",
  43. "istanbul": "^0.4.5",
  44. "jsdoc-to-markdown": "^5.0.0",
  45. "tape": "^4.0.0"
  46. }
  47. }