package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "@ephox/sugar",
  3. "version": "8.1.1",
  4. "description": "Basic DOM manipulation",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/tinymce/tinymce.git",
  8. "directory": "modules/sugar"
  9. },
  10. "scripts": {
  11. "prepublishOnly": "tsc -b",
  12. "test": "bedrock-auto -b chrome-headless --stopOnFailure -d src/test/ts",
  13. "test-manual": "bedrock --stopOnFailure -d src/test/ts",
  14. "lint": "eslint --config ../../.eslintrc.json src/**/*.ts"
  15. },
  16. "keywords": [
  17. "DOM",
  18. "insert",
  19. "append",
  20. "predicate"
  21. ],
  22. "author": "Tiny Technologies, Inc",
  23. "license": "Apache-2.0",
  24. "dependencies": {
  25. "@ephox/katamari": "^8.1.1",
  26. "@ephox/sand": "^5.0.3"
  27. },
  28. "devDependencies": {
  29. "@ephox/katamari-assertions": "^3.0.3"
  30. },
  31. "files": [
  32. "lib/main",
  33. "lib/demo",
  34. "lib/test",
  35. "src",
  36. "tsconfig.json",
  37. "README.md",
  38. "LEGAL.txt",
  39. "CHANGELOG.txt",
  40. "LICENSE.txt"
  41. ],
  42. "main": "./lib/main/ts/ephox/sugar/api/Main.js",
  43. "module": "./lib/main/ts/ephox/sugar/api/Main.js",
  44. "types": "./lib/main/ts/ephox/sugar/api/Main.d.ts"
  45. }