package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "@jimp/plugin-blit",
  3. "version": "0.10.3",
  4. "description": "Blit an image.",
  5. "main": "dist/index.js",
  6. "module": "es/index.js",
  7. "types": "index.d.ts",
  8. "scripts": {
  9. "test": "cross-env BABEL_ENV=test mocha --require @babel/register",
  10. "test:watch": "npm run test -- --reporter min --watch",
  11. "test:coverage": "nyc npm run test",
  12. "build": "npm run build:node:production && npm run build:module",
  13. "build:watch": "npm run build:node:debug -- -- --watch --verbose",
  14. "build:debug": "npm run build:node:debug",
  15. "build:module": "cross-env BABEL_ENV=module babel src -d es --source-maps --config-file ../../babel.config.js",
  16. "build:node": "babel src -d dist --source-maps --config-file ../../babel.config.js",
  17. "build:node:debug": "cross-env BABEL_ENV=development npm run build:node",
  18. "build:node:production": "cross-env BABEL_ENV=production npm run build:node"
  19. },
  20. "author": "",
  21. "license": "MIT",
  22. "dependencies": {
  23. "@babel/runtime": "^7.7.2",
  24. "@jimp/utils": "^0.10.3",
  25. "core-js": "^3.4.1"
  26. },
  27. "devDependencies": {
  28. "@jimp/custom": "^0.10.3",
  29. "@jimp/jpeg": "^0.10.3",
  30. "@jimp/test-utils": "^0.10.3"
  31. },
  32. "peerDependencies": {
  33. "@jimp/custom": ">=0.3.5"
  34. },
  35. "publishConfig": {
  36. "access": "public"
  37. },
  38. "gitHead": "37197106eae5c26231018dfdc0254422f6b43927"
  39. }