package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "print-js",
  3. "homepage": "http://printjs.crabbly.com",
  4. "description": "A tiny javascript library to help printing from the web.",
  5. "version": "1.6.0",
  6. "main": "dist/print.js",
  7. "types": "src/index.d.ts",
  8. "repository": "https://github.com/crabbly/Print.js",
  9. "license": "MIT",
  10. "devDependencies": {
  11. "@babel/core": "7.11.6",
  12. "@babel/preset-env": "7.11.5",
  13. "babel-loader": "8.1.0",
  14. "coveralls": "3.1.0",
  15. "css-loader": "4.2.2",
  16. "istanbul-instrumenter-loader": "3.0.1",
  17. "jasmine-core": "3.6.0",
  18. "karma": "5.2.1",
  19. "karma-chrome-launcher": "3.1.0",
  20. "karma-coverage": "2.0.3",
  21. "karma-jasmine": "4.0.1",
  22. "karma-phantomjs-launcher": "1.0.4",
  23. "karma-sourcemap-loader": "0.3.8",
  24. "karma-webpack": "4.0.2",
  25. "mini-css-extract-plugin": "0.11.0",
  26. "node-sass": "4.14.1",
  27. "optimize-css-assets-webpack-plugin": "5.0.4",
  28. "sass-loader": "10.0.2",
  29. "standard": "14.3.4",
  30. "terser-webpack-plugin": "4.1.0",
  31. "webpack": "4.44.1",
  32. "webpack-cli": "3.3.12",
  33. "webpack-dev-server": "3.11.0"
  34. },
  35. "scripts": {
  36. "test": "standard && karma start",
  37. "dev": "webpack --mode development --progress --hide-modules --devtool source-map",
  38. "watch": "webpack --mode development --watch --progress --hide-modules",
  39. "production": "webpack --mode production --progress --hide-modules",
  40. "coverage": "open coverage/lcov-report/index.html",
  41. "coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
  42. "start": "webpack-dev-server --public http://localhost:8080/test/manual --open",
  43. "standard:fix": "standard --fix"
  44. },
  45. "author": "Rodrigo Vieira <rodrigo@crabbly.com>",
  46. "standard": {
  47. "ignore": [
  48. "/dist/print.js"
  49. ],
  50. "env": {
  51. "browser": true,
  52. "jasmine": true
  53. }
  54. },
  55. "keywords": [
  56. "printjs",
  57. "print.js",
  58. "print-js"
  59. ]
  60. }