dbounce.js

Basic thread-wide de-bounce helper
git clone git://git.finwo.net/lib/dbounce.js
Log | Files | Refs | README

package.json (935B)


      1 {
      2   "name": "dbounce",
      3   "version": "1.0.0",
      4   "description": "Basic thread-wide de-bounce helper",
      5   "main": "dist/index.js",
      6   "scripts": {
      7     "test": "tape $(aaargh config.test.json)",
      8     "build": "esbuild $(aaargh config.build.json)",
      9     "postpublish": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{print $2}' | sed 's/[\",]//g' | tr -d '[[:space:]]') && npm deprecate \"dbounce@<${PACKAGE_VERSION}\" \"Rolling release, please update to ${PACKAGE_VERSION}\""
     10   },
     11   "files": [
     12     "dist",
     13     "package.json",
     14     "README.md"
     15   ],
     16   "keywords": [
     17     "debounce"
     18   ],
     19   "author": "Robin Bron <robin@finwo.nl>",
     20   "license": "MIT",
     21   "funding": {
     22     "url": "https://github.com/sponsors/finwo"
     23   },
     24   "repository": {
     25     "type": "git",
     26     "url": "git+https://github.com/finwo/dbounce.git"
     27   },
     28   "devDependencies": {
     29     "aaargh": "^1.0.1",
     30     "esbuild": "^0.12.19",
     31     "tape": "^5.3.1"
     32   }
     33 }