package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@jimp/core",
  3. "version": "0.10.3",
  4. "description": "Jimp core",
  5. "main": "dist/index.js",
  6. "module": "es/index.js",
  7. "types": "types/index.d.ts",
  8. "files": [
  9. "dist",
  10. "es",
  11. "index.d.ts",
  12. "fonts",
  13. "types"
  14. ],
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/oliver-moran/jimp.git"
  18. },
  19. "bugs": {
  20. "url": "https://github.com/oliver-moran/jimp/issues"
  21. },
  22. "scripts": {
  23. "test": "cross-env BABEL_ENV=test mocha --require @babel/register test/**/*.js",
  24. "test:watch": "npm run test -- --reporter min --watch",
  25. "test:coverage": "nyc npm run test",
  26. "build": "npm run build:node:production && npm run build:module",
  27. "build:watch": "npm run build:node:debug -- -- --watch --verbose",
  28. "build:debug": "npm run build:node:debug",
  29. "build:module": "cross-env BABEL_ENV=module babel src -d es --source-maps --config-file ../../babel.config.js",
  30. "build:node": "babel src -d dist --source-maps --config-file ../../babel.config.js",
  31. "build:node:debug": "cross-env BABEL_ENV=development npm run build:node",
  32. "build:node:production": "cross-env BABEL_ENV=production npm run build:node"
  33. },
  34. "author": "Oliver Moran <oliver.moran@gmail.com>",
  35. "license": "MIT",
  36. "dependencies": {
  37. "@babel/runtime": "^7.7.2",
  38. "@jimp/utils": "^0.10.3",
  39. "any-base": "^1.1.0",
  40. "buffer": "^5.2.0",
  41. "core-js": "^3.4.1",
  42. "exif-parser": "^0.1.12",
  43. "file-type": "^9.0.0",
  44. "load-bmfont": "^1.3.1",
  45. "mkdirp": "^0.5.1",
  46. "phin": "^2.9.1",
  47. "pixelmatch": "^4.0.2",
  48. "tinycolor2": "^1.4.1"
  49. },
  50. "devDependencies": {
  51. "should": "^13.2.3"
  52. },
  53. "xo": false,
  54. "publishConfig": {
  55. "access": "public"
  56. },
  57. "gitHead": "37197106eae5c26231018dfdc0254422f6b43927"
  58. }