UNPKG

simplesignal

Version:
57 lines (56 loc) 1.59 kB
{ "name": "simplesignal", "version": "6.0.0", "description": "Super-simple signals class", "main": "./dist/SimpleSignal.umd.js", "module": "./dist/SimpleSignal.es.js", "types": "./dist/SimpleSignal.d.ts", "scripts": { "build": "rimraf dist && rollup --config --bundleConfigAsCjs", "build:declarations": "tsc -d", "test": "jest --testMatch **/test/**/*-test-*.js", "test:coverage": "yarn test --coverage", "test:coverage:coveralls": "yarn test --coverage --coverageReporters=text-lcov | coveralls", "test:watch": "yarn test --watchAll", "lint": "eslint src/**/*.ts", "prepublish": "yarn build && yarn build:declarations" }, "repository": { "type": "git", "url": "git+https://github.com/zeh/simplesignal.git" }, "keywords": [ "signals", "events", "callbacks", "minimal", "small", "simple", "tiny", "typescript" ], "author": "Zeh Fernando <npm@zehfernando.com> http://zehfernando.com", "license": "MIT", "bugs": { "url": "https://github.com/zeh/simplesignal/issues" }, "homepage": "https://github.com/zeh/simplesignal#readme", "devDependencies": { "@babel/core": "^7.23.9", "@babel/preset-env": "^7.23.9", "@rollup/plugin-typescript": "^11.1.6", "@typescript-eslint/eslint-plugin": "^6.20.0", "@typescript-eslint/parser": "^6.20.0", "babel-jest": "^29.7.0", "coveralls": "^3.1.1", "eslint": "^8.56.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.1.3", "jest": "^29.7.0", "prettier": "^3.2.4", "rimraf": "^5.0.5", "rollup": "^4.9.6", "tslib": "^2.6.2", "typescript": "^5.3.3" } }