package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "@ephox/snooker",
  3. "description": "This project implements the table model.",
  4. "version": "10.0.1",
  5. "files": [
  6. "lib/main",
  7. "lib/demo",
  8. "lib/test",
  9. "src",
  10. "tsconfig.json",
  11. "README.md",
  12. "LEGAL.txt",
  13. "CHANGELOG.txt",
  14. "LICENSE.txt"
  15. ],
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/tinymce/tinymce.git",
  19. "directory": "modules/snooker"
  20. },
  21. "dependencies": {
  22. "@ephox/dragster": "^6.0.3",
  23. "@ephox/katamari": "^8.1.1",
  24. "@ephox/porkbun": "^6.0.3",
  25. "@ephox/robin": "^9.0.3",
  26. "@ephox/sugar": "^8.1.1",
  27. "tslib": "^2.0.0"
  28. },
  29. "author": "Tiny Technologies, Inc",
  30. "license": "Apache-2.0",
  31. "main": "./lib/main/ts/ephox/snooker/api/Main.js",
  32. "module": "./lib/main/ts/ephox/snooker/api/Main.js",
  33. "types": "./lib/main/ts/ephox/snooker/api/Main.d.ts",
  34. "scripts": {
  35. "prepublishOnly": "tsc -b",
  36. "test": "bedrock-auto -b phantomjs -d src/test/ts",
  37. "test-manual": "bedrock -d src/test/ts",
  38. "lint": "eslint --config ../../.eslintrc.json src/**/*.ts"
  39. }
  40. }