package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "symbol-tree",
  3. "version": "3.2.2",
  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. "api.md"
  32. ],
  33. "author": "Joris van der Wel <joris@jorisvanderwel.com>",
  34. "license": "MIT",
  35. "bugs": {
  36. "url": "https://github.com/jsdom/js-symbol-tree/issues"
  37. },
  38. "homepage": "https://github.com/jsdom/js-symbol-tree#symbol-tree",
  39. "devDependencies": {
  40. "babel-eslint": "^7.1.1",
  41. "coveralls": "^2.11.15",
  42. "eslint": "^3.12.0",
  43. "eslint-plugin-import": "^2.2.0",
  44. "istanbul": "^0.4.5",
  45. "jsdoc-to-markdown": "^3.0.0",
  46. "tape": "^4.0.0"
  47. }
  48. }