observable-webworkers
Advanced tools
Comparing version 1.0.0 to 2.0.0
140
package.json
{ | ||
"name": "observable-webworkers", | ||
"version": "1.0.0", | ||
"description": "A way to evesdrop on Web Worker messages", | ||
"main": "lib/index.js", | ||
"scripts": { | ||
"test": "ava", | ||
"lint": "standard" | ||
}, | ||
"version": "2.0.0", | ||
"description": "A way to eavesdrop on Web Worker messages", | ||
"author": "Alex Potsides <alex@achingbrain.net>", | ||
"license": "ISC", | ||
"license": "Apache-2.0 OR MIT", | ||
"homepage": "https://github.com/achingbrain/observable-webworkers#readme", | ||
"repository": { | ||
@@ -19,16 +15,118 @@ "type": "git", | ||
}, | ||
"homepage": "https://github.com/achingbrain/observable-webworkers", | ||
"engines": { | ||
"node": ">=16.0.0", | ||
"npm": ">=7.0.0" | ||
}, | ||
"type": "module", | ||
"types": "./dist/src/index.d.ts", | ||
"files": [ | ||
"src", | ||
"dist/src", | ||
"!dist/test", | ||
"!**/*.tsbuildinfo" | ||
], | ||
"exports": { | ||
".": { | ||
"import": "./dist/src/index.js" | ||
} | ||
}, | ||
"eslintConfig": { | ||
"extends": "ipfs", | ||
"parserOptions": { | ||
"sourceType": "module" | ||
} | ||
}, | ||
"release": { | ||
"branches": [ | ||
"master" | ||
], | ||
"plugins": [ | ||
[ | ||
"@semantic-release/commit-analyzer", | ||
{ | ||
"preset": "conventionalcommits", | ||
"releaseRules": [ | ||
{ | ||
"breaking": true, | ||
"release": "major" | ||
}, | ||
{ | ||
"revert": true, | ||
"release": "patch" | ||
}, | ||
{ | ||
"type": "feat", | ||
"release": "minor" | ||
}, | ||
{ | ||
"type": "fix", | ||
"release": "patch" | ||
}, | ||
{ | ||
"type": "chore", | ||
"release": "patch" | ||
}, | ||
{ | ||
"type": "docs", | ||
"release": "patch" | ||
}, | ||
{ | ||
"type": "test", | ||
"release": "patch" | ||
}, | ||
{ | ||
"scope": "no-release", | ||
"release": false | ||
} | ||
] | ||
} | ||
], | ||
[ | ||
"@semantic-release/release-notes-generator", | ||
{ | ||
"preset": "conventionalcommits", | ||
"presetConfig": { | ||
"types": [ | ||
{ | ||
"type": "feat", | ||
"section": "Features" | ||
}, | ||
{ | ||
"type": "fix", | ||
"section": "Bug Fixes" | ||
}, | ||
{ | ||
"type": "chore", | ||
"section": "Trivial Changes" | ||
}, | ||
{ | ||
"type": "docs", | ||
"section": "Trivial Changes" | ||
}, | ||
{ | ||
"type": "test", | ||
"section": "Tests" | ||
} | ||
] | ||
} | ||
} | ||
], | ||
"@semantic-release/changelog", | ||
"@semantic-release/npm", | ||
"@semantic-release/github", | ||
"@semantic-release/git" | ||
] | ||
}, | ||
"scripts": { | ||
"build": "tsc", | ||
"pretest": "npm run build", | ||
"test": "aegir test -t browser -f ./dist/test", | ||
"test:chrome": "npm run test", | ||
"test:firefox": "npm run test -- -- --browser firefox", | ||
"lint": "aegir lint", | ||
"release": "semantic-release" | ||
}, | ||
"devDependencies": { | ||
"ava": "^0.25.0", | ||
"browserify": "^16.2.2", | ||
"execa": "^0.10.0", | ||
"pre-commit": "^1.2.2", | ||
"run-headless": "^2.0.1", | ||
"standard": "^11.0.1", | ||
"webworkify": "^1.5.0" | ||
}, | ||
"pre-commit": [ | ||
"lint", | ||
"test" | ||
] | ||
"aegir": "^36.1.3" | ||
} | ||
} |
# observable-webworkers | ||
Allow you to listen to messages emitted by web workers | ||
[![Build Status](https://github.com/achingbrain/observable-webworkers/actions/workflows/js-test-and-release.yml/badge.svg?branch=main)](https://github.com/achingbrain/observable-webworkers/actions/workflows/js-test-and-release.yml) | ||
> Allow you to listen to messages emitted by web workers | ||
## Install | ||
@@ -6,0 +8,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7741
1
8
79
26
Yes
1
80
1