eiurur/Samune

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "samune",
  "version": "0.6.0",
  "description": "Generator of thumbnails",
  "main": "./index.js",
  "scripts": {
    "watch": "nodemon -w index.js",
    "start": "node index.js",
    "test": "ava -v -T=2m -C test/*.spec.js",
    "test:watch": "ava -v -w -T=2m -C test/*.spec.js",
    "lint": "eslint .",
    "precommit": "lint-staged"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/eiurur/Samune.git"
  },
  "author": "eiurur",
  "license": "MIT",
  "devDependencies": {
    "ava": "^3.15.0",
    "concurrently": "^6.2.1",
    "eslint": "^7.32.0",
    "eslint-config-airbnb": "^18.2.1",
    "eslint-plugin-import": "^2.24.1",
    "eslint-plugin-jsx-a11y": "^6.4.1",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-react": "^7.24.0",
    "nodemon": "^2.0.12",
    "prettier": "^2.3.2",
    "prettier-eslint": "^13.0.0",
    "prettier-eslint-cli": "^5.0.1"
  },
  "dependencies": {
    "@gumlet/gif-resize": "^1.3.1",
    "fs-extra": "^10.0.0",
    "glob": "^7.1.7",
    "lodash": "^4.17.21",
    "randomstring": "^1.2.1",
    "request": "^2.88.0",
    "sharp": "^0.29.0"
  },
  "lint-staged": {
    "*.js": [
      "prettier-eslint --write",
      "eslint",
      "git add"
    ]
  }
}