{
  "name": "@webreflection/signal",
  "description": "A minimalistic signals implementation",
  "version": "2.1.2",
  "main": "./cjs/index.js",
  "types": "./types/index.d.ts",
  "scripts": {
    "build": "npm run cjs && npm run rollup:es && npm run test && npm run size",
    "cjs": "ascjs esm cjs",
    "test": "c8 node test/index.js",
    "size": "cat es.js | wc -c && cat es.js | brotli | wc -c",
    "rollup:es": "rollup --config rollup/es.config.js && sed -i 's/),this.dispose/).dispose/' es.js",
    "coverage": "mkdir -p ./coverage; c8 report --reporter=text-lcov > ./coverage/lcov.info"
  },
  "keywords": [
    "minimalistic",
    "signals"
  ],
  "author": "Andrea Giammarchi",
  "license": "ISC",
  "devDependencies": {
    "@rollup/plugin-node-resolve": "^15.2.3",
    "@rollup/plugin-terser": "^0.4.4",
    "ascjs": "^6.0.3",
    "c8": "^9.1.0",
    "rollup": "^4.14.3"
  },
  "module": "./esm/index.js",
  "unpkg": "./es.js",
  "type": "module",
  "exports": {
    ".": {
      "import": "./esm/index.js",
      "default": "./cjs/index.js",
      "types": "./types/index.d.ts"
    },
    "./package.json": "./package.json"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/WebReflection/signal.git"
  },
  "bugs": {
    "url": "https://github.com/WebReflection/signal/issues"
  },
  "homepage": "https://github.com/WebReflection/signal#readme"
}
