peerjs-js-binarypack
Advanced tools
Comparing version 1.0.2 to 1.0.3-rc.1
{ | ||
"extends": "semistandard", | ||
"env": { | ||
"browser": true | ||
} | ||
} | ||
"parser": "@typescript-eslint/parser", | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/eslint-recommended", | ||
"plugin:@typescript-eslint/recommended" | ||
] | ||
} |
{ | ||
"standard.semistandard": true, | ||
"standard.usePackageJson": true, | ||
"standard.autoFixOnSave": true, | ||
"javascript.validate.enable": false, | ||
"eslint.autoFixOnSave": true | ||
} | ||
"standard.semistandard": true, | ||
"standard.usePackageJson": true, | ||
"standard.autoFixOnSave": true, | ||
"javascript.validate.enable": false, | ||
"eslint.autoFixOnSave": true | ||
} |
160
package.json
{ | ||
"name": "peerjs-js-binarypack", | ||
"version": "1.0.2", | ||
"description": "BinaryPack serialization for the web browser", | ||
"homepage": "https://github.com/peers/js-binarypack", | ||
"main": "./lib/binarypack.js", | ||
"typings": "./index.d.ts", | ||
"scripts": { | ||
"prepublish": "./node_modules/.bin/grunt", | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"format": "semistandard" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/peers/js-binarypack.git" | ||
}, | ||
"author": "Eric Zhang", | ||
"devDependencies": { | ||
"eslint": "^6.1.0", | ||
"eslint-config-semistandard": "^14.0.0", | ||
"eslint-config-standard": "^13.0.1", | ||
"eslint-plugin-import": "^2.18.2", | ||
"eslint-plugin-node": "^9.1.0", | ||
"eslint-plugin-promise": "^4.2.1", | ||
"eslint-plugin-standard": "^4.0.0", | ||
"grunt": "^1.0.4", | ||
"grunt-browserify": "^5.3.0", | ||
"grunt-cli": "^1.3.2", | ||
"grunt-contrib-concat": "^1.0.1", | ||
"grunt-contrib-uglify": "^4.0.1", | ||
"semistandard": "^13.0.1", | ||
"uglifyjs": "^2.4.11" | ||
}, | ||
"semistandard": { | ||
"ignore": [ | ||
"/dist/" | ||
] | ||
}, | ||
"license": "BSD" | ||
"name": "peerjs-js-binarypack", | ||
"version": "1.0.3-rc.1", | ||
"description": "BinaryPack serialization", | ||
"homepage": "https://github.com/peers/js-binarypack", | ||
"main": "dist/binarypack.cjs", | ||
"module": "dist/binarypack.mjs", | ||
"source": "lib/binarypack.ts", | ||
"types": "dist/binarypack.d.ts", | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"import": { | ||
"types": "./dist/binarypack.d.ts", | ||
"default": "./dist/binarypack.mjs" | ||
}, | ||
"require": { | ||
"types": "./dist/binarypack.d.ts", | ||
"default": "./dist/binarypack.cjs" | ||
} | ||
} | ||
}, | ||
"scripts": { | ||
"watch": "parcel watch", | ||
"build": "parcel build", | ||
"test": "jest", | ||
"coverage": "jest --coverage", | ||
"format": "prettier --write .", | ||
"lint": "eslint --ext .js,.ts .", | ||
"check": "tsc --noEmit" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/peers/js-binarypack" | ||
}, | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/peer" | ||
}, | ||
"collective": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/peer" | ||
}, | ||
"author": "Eric Zhang", | ||
"contributors": [ | ||
{ | ||
"name": "Eric Zhang", | ||
"email": "really.ez@gmail.com" | ||
}, | ||
{ | ||
"name": "Jonas Gloning", | ||
"email": "34194370+jonasgloning@users.noreply.github.com" | ||
}, | ||
{ | ||
"name": "afrokick", | ||
"email": "devbyru@gmail.com" | ||
}, | ||
{ | ||
"name": "manvalls", | ||
"email": "manolo@chatiku.com" | ||
}, | ||
{ | ||
"name": "Michelle Bu", | ||
"email": "michelle@michellebu.com" | ||
}, | ||
{ | ||
"name": "Liu Cong", | ||
"email": "leehom2001@gmail.com" | ||
}, | ||
{ | ||
"name": "Michelle Bu", | ||
"email": "michelle@stripe.com" | ||
}, | ||
{ | ||
"name": "lmb", | ||
"email": "i@lmb.io" | ||
}, | ||
{ | ||
"name": "orcaman", | ||
"email": "orhiltch@gmail.com" | ||
}, | ||
{ | ||
"name": "Godfrey Chan", | ||
"email": "godfreykfc@gmail.com" | ||
}, | ||
{ | ||
"name": "Jarrett Cruger", | ||
"email": "jcrugzz@gmail.com" | ||
}, | ||
{ | ||
"name": "Rossi Lorenzo", | ||
"email": "snowycoder@gmail.com" | ||
}, | ||
{ | ||
"name": "divec", | ||
"email": "david@troi.org" | ||
}, | ||
{ | ||
"name": "renovate[bot]", | ||
"email": "29139614+renovate[bot]@users.noreply.github.com" | ||
} | ||
], | ||
"devDependencies": { | ||
"@parcel/packager-ts": "^2.8.3", | ||
"@parcel/transformer-typescript-types": "^2.8.3", | ||
"@semantic-release/changelog": "^6.0.2", | ||
"@semantic-release/git": "^10.0.1", | ||
"@swc/core": "^1.3.35", | ||
"@swc/jest": "^0.2.24", | ||
"@types/jest": "^29.4.0", | ||
"@typescript-eslint/eslint-plugin": "^5.52.0", | ||
"eslint": "^8.34.0", | ||
"jest": "^29.4.3", | ||
"jest-environment-jsdom": "^29.4.3", | ||
"parcel": "^2.8.3", | ||
"prettier": "^2.8.4", | ||
"semantic-release": "^20.1.0", | ||
"typescript": "^4.9.5" | ||
}, | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">= 14.0.0" | ||
} | ||
} |
@@ -1,6 +0,8 @@ | ||
BinaryPack for Javascript browsers | ||
======== | ||
# BinaryPack | ||
BinaryPack is 95% MessagePack. The protocol has been extended to support distinct string and binary types. | ||
Inspired by: https://github.com/cuzic/MessagePack-JS | ||
This library is mainly used by [PeerJS](https://peerjs.com) to transfer objects via data channels. | ||
Bug reports and fixes are welcome, but we are unlikely to implement new features. | ||
Inspired by: https://github.com/cuzic/MessagePack-JS |
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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
Misc. License Issues
License(Experimental) A package's licensing information has fine-grained problems.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
No tests
QualityPackage does not have any tests. This is a strong signal of a poorly maintained or low quality package.
Found 1 instance in 1 package
3209375
38
0
3078
1
9
0
Yes
15