package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "@ephox/robin",
  3. "description": "This project is for grouping sibling DOM nodes together by boundary points, for example the list of elements and nodes representing a word.",
  4. "version": "9.0.3",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/tinymce/tinymce.git",
  8. "directory": "modules/robin"
  9. },
  10. "files": [
  11. "lib/main",
  12. "lib/demo",
  13. "lib/test",
  14. "src",
  15. "tsconfig.json",
  16. "README.md",
  17. "LEGAL.txt",
  18. "CHANGELOG.txt",
  19. "LICENSE.txt"
  20. ],
  21. "dependencies": {
  22. "@ephox/boss": "^5.0.3",
  23. "@ephox/katamari": "^8.1.1",
  24. "@ephox/phoenix": "^7.0.3",
  25. "@ephox/polaris": "^5.0.3",
  26. "@ephox/sugar": "^8.1.1",
  27. "tslib": "^2.0.0"
  28. },
  29. "devDependencies": {
  30. "@ephox/katamari-assertions": "^3.0.3"
  31. },
  32. "author": "Tiny Technologies, Inc",
  33. "license": "Apache-2.0",
  34. "main": "./lib/main/ts/ephox/robin/api/Main.js",
  35. "module": "./lib/main/ts/ephox/robin/api/Main.js",
  36. "types": "./lib/main/ts/ephox/robin/api/Main.d.ts",
  37. "scripts": {
  38. "test": "bedrock-auto -b phantomjs -d src/test",
  39. "test-manual": "bedrock -d src/test",
  40. "lint": "eslint --config ../../.eslintrc.json src/**/*.ts",
  41. "prepublishOnly": "tsc -b"
  42. }
  43. }