package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "@ephox/jax",
  3. "version": "6.0.3",
  4. "description": "AJAX library",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/tinymce/tinymce.git",
  8. "directory": "modules/jax"
  9. },
  10. "scripts": {
  11. "prepublishOnly": "yarn run lint && yarn run build",
  12. "lint": "eslint --config ../../.eslintrc.json src/**/*.ts",
  13. "build": "tsc -b",
  14. "test": "bedrock-auto -b phantomjs --customRoutes src/test/json/routes.json -d src/test/ts/",
  15. "test-manual": "bedrock --customRoutes src/test/json/routes.json -d src/test/ts/",
  16. "start": "webpack-dev-server --open-page './src/demo/html'",
  17. "build:demo": "webpack"
  18. },
  19. "keywords": [
  20. "ajax"
  21. ],
  22. "author": "Tiny Technologies, Inc",
  23. "license": "Apache-2.0",
  24. "dependencies": {
  25. "@ephox/katamari": "^8.1.1",
  26. "tslib": "^2.0.0"
  27. },
  28. "files": [
  29. "lib/main",
  30. "lib/demo",
  31. "lib/test",
  32. "src",
  33. "tsconfig.json",
  34. "README.md",
  35. "LEGAL.txt",
  36. "CHANGELOG.txt",
  37. "LICENSE.txt"
  38. ],
  39. "main": "./lib/main/ts/ephox/jax/api/Main.js",
  40. "module": "./lib/main/ts/ephox/jax/api/Main.js",
  41. "types": "./lib/main/ts/ephox/jax/api/Main.d.ts"
  42. }