{
  "name": "giframe",
  "version": "0.2.0",
  "description": "extract the first frame in GIF without reading whole bytes, support both browser and nodejs, using stream-like decoder",
  "author": "alienzhou <alienzhou16@163.com>",
  "license": "MIT",
  "keywords": [
    "gif",
    "extract",
    "frame",
    "decode",
    "gif89a",
    "gif87a",
    "stream-like",
    "progressive"
  ],
  "homepage": "https://github.com/alienzhou/giframe#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/alienzhou/giframe"
  },
  "scripts": {
    "start": "npm run example:browser",
    "example:node:limit": "npm run build:node && ts-node example/nodejs/run-limit $*",
    "example:node:stream": "npm run build:node && ts-node example/nodejs/run-stream $*",
    "example:browser": "npm run build:browser && ts-node example/browser/app.ts",
    "build:node": "tsc",
    "build:browser": "rollup -c rollup.config.ts",
    "build": "run-s build:node build:browser",
    "test": "mocha --check-leaks -r ts-node/register test/**/*.spec.ts",
    "coverage": "nyc -r lcov -e .ts -x \"test/**/*.ts\" npm run test",
    "lint": "eslint src/** --fix --ext .ts",
    "prepublishOnly": "run-s lint coverage build"
  },
  "husky": {
    "hooks": {
      "pre-commit": "npm run lint"
    }
  },
  "main": "dist/node/giframe.js",
  "browser": "dist/umd/giframe.js",
  "module": "dist/esm/giframe.esm.js",
  "dependencies": {
    "canvas": "^2.6.1"
  },
  "devDependencies": {
    "@babel/core": "^7.8.3",
    "@babel/plugin-transform-runtime": "^7.8.3",
    "@babel/preset-env": "^7.8.3",
    "@babel/runtime": "^7.8.3",
    "@rollup/plugin-strip": "^1.3.1",
    "@types/chai": "^4.2.7",
    "@types/del": "^4.0.0",
    "@types/fs-extra": "^8.0.1",
    "@types/lodash.flattendeep": "^4.4.6",
    "@types/mocha": "^5.2.7",
    "@types/node": "^13.1.7",
    "@types/pixelmatch": "^5.0.0",
    "@types/rollup": "^0.54.0",
    "@types/sharp": "^0.24.0",
    "@types/sinon": "^7.5.1",
    "@typescript-eslint/eslint-plugin": "^2.18.0",
    "@typescript-eslint/parser": "^2.18.0",
    "better-opn": "^1.0.0",
    "chai": "^4.2.0",
    "coveralls": "^3.0.9",
    "eslint": "^6.8.0",
    "file-type": "^13.1.0",
    "fs-extra": "^8.1.0",
    "gzip-size": "^5.1.1",
    "husky": "^4.2.1",
    "lodash.flattendeep": "^4.4.0",
    "mocha": "^7.0.0",
    "npm-run-all": "^4.1.5",
    "nyc": "^15.0.0",
    "ora": "^4.0.3",
    "pixelmatch": "^5.1.0",
    "rollup": "^1.29.0",
    "rollup-plugin-babel": "^4.3.3",
    "rollup-plugin-commonjs": "^10.1.0",
    "rollup-plugin-node-resolve": "^5.2.0",
    "rollup-plugin-terser": "^5.2.0",
    "rollup-plugin-typescript2": "^0.25.3",
    "sharp": "^0.24.0",
    "sinon": "^8.1.0",
    "throttle-stream": "0.0.8",
    "ts-node": "^8.6.2",
    "typescript": "^3.7.5"
  }
}
