🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

@stablelib/bytewriter

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@stablelib/bytewriter - npm Package Compare versions

Comparing version

to
0.5.0

lib/bytewriter.bench.d.ts

16

package.json
{
"name": "@stablelib/bytewriter",
"version": "0.2.5",
"version": "0.5.0",
"description": "Byte writer",
"main": "./dist/bytewriter.js",
"typings": "./dist/bytewriter.d.ts",
"main": "./lib/bytewriter.js",
"typings": "./lib/bytewriter.d.ts",
"author": "Dmitry Chestnykh",

@@ -15,12 +15,12 @@ "license": "MIT",

"test": "jasmine JASMINE_CONFIG_PATH=../../configs/jasmine.json",
"bench": "node ./dist/bytewriter.bench.js"
"bench": "node ./lib/bytewriter.bench.js"
},
"dependencies": {
"@stablelib/binary": "^0.2.5",
"@stablelib/int": "^0.2.5",
"@stablelib/wipe": "^0.2.5"
"@stablelib/binary": "^0.5.0",
"@stablelib/int": "^0.5.0",
"@stablelib/wipe": "^0.5.0"
},
"devDependencies": {
"@stablelib/benchmark": "^0.2.5"
"@stablelib/benchmark": "^0.5.0"
}
}

@@ -7,2 +7,3 @@ {

"noUnusedParameters": true,
"noImplicitReturns": true,
"noUnusedLocals": true,

@@ -15,3 +16,3 @@ "removeComments": false,

"declaration": true,
"outDir": "dist",
"outDir": "lib",
"lib": [

@@ -26,4 +27,4 @@ "es5",

"node_modules",
"dist"
"lib"
]
}