{
  "name": "line-clamp",
  "version": "1.0.0",
  "description": "Line clamp a DOM element in vanilla JavaScript",
  "author": "Lim Yuan Qing",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git://github.com/yuanqing/line-clamp.git"
  },
  "devDependencies": {
    "concurrently": "^4.1.1",
    "gzip-size-cli": "^3.0.0",
    "husky": "^3.0.0",
    "lint-staged": "^9.2.0",
    "open-cli": "^5.0.0",
    "prettier-standard": "^9.1.1",
    "sirv-cli": "^0.4.4",
    "standard": "^13.0.2",
    "terser": "^4.1.2",
    "watchify": "^3.11.1"
  },
  "scripts": {
    "start": "concurrently --raw \"watchify index.js --standalone lineClamp --outfile example/bundle.js\" \"sirv start example --port 8080 --quiet\" \"open 'http://0.0.0.0:8080/'\"",
    "fix": "prettier-standard index.js",
    "lint": "standard index.js",
    "weight": "terser index.js --compress --mangle --toplevel | gzip-size"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.js": [
      "standard",
      "git add"
    ]
  },
  "files": [
    "index.js"
  ],
  "keywords": [
    "clamp",
    "dom",
    "ellipsis",
    "html",
    "line clamp",
    "line-clamp",
    "text",
    "truncate",
    "truncation"
  ]
}
