package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "parchment",
  3. "version": "1.1.4",
  4. "description": "A document model for rich text editors",
  5. "author": "Jason Chen <jhchen7@gmail.com>",
  6. "homepage": "http://quilljs.com/docs/parchment",
  7. "main": "dist/parchment.js",
  8. "files": [
  9. "tsconfig.json",
  10. "dist",
  11. "src"
  12. ],
  13. "types": "dist/src/parchment.d.ts",
  14. "devDependencies": {
  15. "babel-core": "^6.26.0",
  16. "istanbul": "~0.4.5",
  17. "jasmine-core": "^2.9.1",
  18. "karma": "^2.0.0",
  19. "karma-babel-preprocessor": "^7.0.0",
  20. "karma-chrome-launcher": "^2.2.0",
  21. "karma-coverage": "^1.1.1",
  22. "karma-jasmine": "^1.1.1",
  23. "karma-sauce-launcher": "^1.2.0",
  24. "karma-webpack": "^2.0.9",
  25. "ts-loader": "^3.4.0",
  26. "typescript": "^2.7.1",
  27. "webpack": "^3.10.0"
  28. },
  29. "license": "BSD-3-Clause",
  30. "repository": {
  31. "type": "git",
  32. "url": "https://github.com/quilljs/parchment"
  33. },
  34. "scripts": {
  35. "build": "webpack --config webpack.conf.js",
  36. "prepublish": "npm run build",
  37. "test": "karma start",
  38. "test:server": "karma start --no-single-run",
  39. "test:travis": "karma start --browsers saucelabs-chrome --reporters dots,saucelabs"
  40. },
  41. "bugs": {
  42. "url": "https://github.com/quilljs/parchment/issues"
  43. }
  44. }