New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

bytestreamjs

Package Overview
Dependencies
Maintainers
2
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bytestreamjs - npm Package Compare versions

Comparing version 1.0.29 to 1.1.0

build/cjs/bit_stream.js

78

package.json

@@ -6,3 +6,3 @@ {

},
"description": "ByteStream is a library making possibe to manipulates single bytes and bits on pure JavaScript",
"description": "ByteStream is a library making possible to manipulates single bytes and bits on pure JavaScript",
"contributors": [

@@ -14,2 +14,7 @@ {

],
"files": [
"build",
"README.md",
"LICENSE"
],
"repository": {

@@ -20,9 +25,13 @@ "type": "git",

"devDependencies": {
"babel-cli": "latest",
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-env": "latest",
"cross-env": "^5.1.4",
"eslint": "^4.19.1",
"mocha": "^3.0.2",
"nyc": "^11.6.0"
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.27",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"coveralls": "^3.1.0",
"eslint": "^7.20.0",
"mocha": "^8.3.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},

@@ -33,6 +42,14 @@ "engines": {

"scripts": {
"build": "babel src --compact=false --out-dir build --source-maps",
"watch": "babel src --compact=false --out-dir build --source-maps --watch",
"test": "cross-env NODE_ENV=test nyc mocha --require babel-register",
"prepublishOnly": "npm run build"
"test": "mocha",
"clear": "rimraf build",
"build": "npm run build:cjs && npm run build:mjs && npm run build:types",
"build:cjs": "tsc -p tsconfig.json --module commonjs --removeComments --outDir build/cjs",
"build:mjs": "tsc -p tsconfig.json --module es2015 --removeComments --outDir build/mjs",
"prebuild:types": "rimraf build/types",
"build:types": "tsc -p tsconfig.json --outDir build/types --declaration --emitDeclarationOnly",
"rebuild": "npm run clear && npm run build",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"coverage": "nyc npm test",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},

@@ -48,7 +65,34 @@ "keywords": [

"name": "bytestreamjs",
"version": "1.0.29",
"jsnext:main": "./src/bytestream.js",
"module": "./src/bytestream.js",
"main": "./build/bytestream.js",
"license": "BSD-3-Clause"
"version": "1.1.0",
"module": "./build/mjs/index.js",
"main": "./build/cjs/index.js",
"license": "BSD-3-Clause",
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"lcov",
"text-summary",
"html"
]
},
"mocha": {
"require": [
"ts-node/register"
],
"extension": [
"ts"
],
"spec": [
"test/**"
]
}
}
# ByteStream.js
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/PeculiarVentures/ByteStream.js/blob/master/LICENSE) [![CircleCI](https://circleci.com/gh/PeculiarVentures/ByteStream.js.svg?style=svg)](https://circleci.com/gh/PeculiarVentures/ByteStream.js) [![Known Vulnerabilities](https://snyk.io/test/github/PeculiarVentures/ByteStream.js/badge.svg)](https://snyk.io/test/github/PeculiarVentures/ByteStream.js) [![Coverage Status](https://coveralls.io/repos/github/PeculiarVentures/ByteStream.js/badge.svg?branch=master)](https://coveralls.io/github/PeculiarVentures/ByteStream.js?branch=master)
[![License](https://img.shields.io/badge/license-BSD-green.svg?style=flat)](https://github.com/PeculiarVentures/ByteStream.js/blob/master/LICENSE) [![CircleCI](https://circleci.com/gh/PeculiarVentures/ByteStream.js.svg?style=svg)](https://circleci.com/gh/PeculiarVentures/ByteStream.js) [![Known Vulnerabilities](https://snyk.io/test/github/PeculiarVentures/ByteStream.js/badge.svg)](https://snyk.io/test/github/PeculiarVentures/ByteStream.js) [![Coverage Status](https://coveralls.io/repos/github/PeculiarVentures/ByteStream.js/badge.svg?branch=master)](https://coveralls.io/github/PeculiarVentures/ByteStream.js?branch=master)

@@ -5,0 +5,0 @@ ## ByteStream class

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc