Socket
Socket
Sign inDemoInstall

random-js

Package Overview
Dependencies
0
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.0.0 to 2.1.0

dist/random-js.esm.js

7

CHANGELOG.md

@@ -0,1 +1,8 @@

# 2.1.0 (2019-05-30)
- Changed `dist/` outputs:
- `random-js.js` => `random-js.umd.js`
- `random-js.mjs` => `random-js.esm.js`
- `random-js.min.js` => `random-js.umd.min.js`
# 2.0.0 (2019-04-01)

@@ -2,0 +9,0 @@

14

package.json
{
"name": "random-js",
"description": "A mathematically correct random number generator library for JavaScript.",
"version": "2.0.0",
"version": "2.1.0",
"author": {

@@ -16,5 +16,5 @@ "name": "Cameron Kenneth Knight",

"repository": "git://github.com/ckknight/random-js",
"main": "dist/random-js.js",
"module": "dist/random-js.mjs",
"unpkg": "dist/random-js.min.js",
"main": "dist/random-js.umd.js",
"module": "dist/random-js.esm.js",
"unpkg": "dist/random-js.umd.min.js",
"types": "dist/index.d.ts",

@@ -43,7 +43,7 @@ "files": [

"clean": "rimraf dist",
"build:umd": "rollup -c rollup.config.es3.js --format umd -o dist/random-js.js --name Random -m",
"build:esm": "rollup -c rollup.config.js --format esm --sourcemap true -o dist/random-js.mjs",
"build:umd": "rollup -c rollup.config.es3.js --format umd -o dist/random-js.umd.js --name Random -m",
"build:esm": "rollup -c rollup.config.js --format esm --sourcemap true -o dist/random-js.esm.js",
"prebuild": "yarn clean",
"build": "yarn build:umd && yarn build:esm",
"minify": "terser --source-map content=dist/random-js.js.map --compress --mangle --output dist/random-js.min.js dist/random-js.js",
"minify": "terser --source-map content=dist/random-js.umd.js.map --compress --mangle --output dist/random-js.umd.min.js dist/random-js.umd.js",
"postbuild": "yarn minify",

@@ -50,0 +50,0 @@ "benchmark": "for k in benchmark/*.js; do node $k; done",

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc