package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "juice",
  3. "version": "8.1.0",
  4. "description": "Inlines css into html source",
  5. "bin": "bin/juice",
  6. "main": "index.js",
  7. "browser": "client.js",
  8. "types": "juice.d.ts",
  9. "files": [
  10. "bin",
  11. "lib",
  12. "client.js",
  13. "index.js",
  14. "juice.d.ts"
  15. ],
  16. "scripts": {
  17. "test": "mocha --reporter spec && npm run test-typescript",
  18. "testcover": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec",
  19. "test-typescript": "tsc ./test/typescript/juice-tests.ts && rm ./test/typescript/juice-tests.js",
  20. "browserify": "browserify client.js -o tmp/bundle.js --standalone juice"
  21. },
  22. "license": "MIT",
  23. "contributors": [
  24. {
  25. "name": "Guillermo Rauch"
  26. },
  27. {
  28. "name": "Andrew Kelley"
  29. },
  30. {
  31. "name": "Jarrett Widman"
  32. }
  33. ],
  34. "engines": {
  35. "node": ">=10.0.0"
  36. },
  37. "dependencies": {
  38. "cheerio": "1.0.0-rc.10",
  39. "commander": "^6.1.0",
  40. "mensch": "^0.3.4",
  41. "slick": "^1.12.2",
  42. "web-resource-inliner": "^6.0.1"
  43. },
  44. "devDependencies": {
  45. "@types/node": "^15.12.2",
  46. "batch": "0.5.3",
  47. "browserify": "^16.2.3",
  48. "cross-spawn": "^6.0.5",
  49. "mocha": "^5.2.0",
  50. "should": "^11.1.1",
  51. "typescript": "^4.1"
  52. },
  53. "repository": {
  54. "type": "git",
  55. "url": "https://github.com/Automattic/juice.git"
  56. }
  57. }