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

crypto-uid

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

crypto-uid - npm Package Compare versions

Comparing version 0.1.1 to 0.2.0

17

CHANGELOG.md

@@ -0,1 +1,15 @@

# Change Log
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
<a name="0.2.0"></a>
# [0.2.0](https://github.com/rolandjitsu/uid/compare/v0.1.1...v0.2.0) (2018-08-30)
### Features
* make tslib a peer dep ([4d5f0cf](https://github.com/rolandjitsu/uid/commit/4d5f0cf))
<a name="0.1.1"></a>

@@ -18,4 +32,1 @@ ## [0.1.1](https://github.com/rolandjitsu/uid/compare/v0.1.0...v0.1.1) (2018-08-29)

* use 12 bytes length as default length ([f51a182](https://github.com/rolandjitsu/uid/commit/f51a182))

130

package.json
{
"name": "crypto-uid",
"version": "0.1.1",
"description": "Cryptographically secure UIDs",
"main": "./dist/crypto-uid.umd.js",
"module": "./dist/crypto-uid.es5.js",
"es2015": "./dist/crypto-uid.js",
"typings": "./dist/index.d.ts",
"keywords": [
"random",
"crypto",
"safe",
"uid",
"generator",
"browser"
],
"homepage": "https://github.com/rolandjitsu/uid",
"license": "MIT",
"author": {
"name": "Roland Groza",
"email": "rolandjitsu@gmail.com"
},
"repository": {
"type": "git",
"url": ""
},
"name": "crypto-uid",
"version": "0.2.0",
"description": "Cryptographically secure UIDs",
"main": "./dist/crypto-uid.umd.js",
"module": "./dist/crypto-uid.es5.js",
"es2015": "./dist/crypto-uid.js",
"typings": "./dist/index.d.ts",
"keywords": [
"random",
"crypto",
"safe",
"uid",
"generator",
"browser"
],
"homepage": "https://github.com/rolandjitsu/uid",
"license": "MIT",
"author": {
"name": "Roland Groza",
"email": "rolandjitsu@gmail.com"
},
"repository": {
"type": "git",
"url": ""
},
"scripts": {
"prebuild": "yarn run clean",
"build": "./scripts/build_package.sh crypto-uid",
"clean": "rm -rf dist out-tsc",
"lint": "tslint -c tslint.json -p ./tsconfig.spec.json -t stylish",
"lint:fix": "yarn run lint -- --fix",
"pretest:cov": "yarn run lint",
"test:cov": "jest --coverage",
"test": "jest --watch",
"release": "standard-version"
},
"standard-version": {
"scripts": {
"prebuild": "yarn run clean",
"build": "./scripts/build_package.sh crypto-uid",
"clean": "rm -rf dist out-tsc",
"lint": "tslint -c tslint.json -p ./tsconfig.spec.json -t stylish",
"lint:fix": "yarn run lint -- --fix",
"pretest:cov": "yarn run lint",
"test:cov": "jest --coverage",
"test": "jest --watch",
"release:prerelease": "./scripts/release.sh prerelease",
"release": "./scripts/release.sh patch",
"release:preminor": "./scripts/release.sh preminor",
"release:minor": "./scripts/release.sh minor",
"release:premajor": "./scripts/release.sh premajor",
"release:major": "./scripts/release.sh major"
},
"husky": {
"hooks": {
"pre-commit": "yarn test:cov"
}
},
"dependencies": {
"tslib": "^1.9.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.54",
"@trust/webcrypto": "^0.9.2",
"@types/jest": "^22.1.2",
"@types/node": "^9.4.5",
"babel-core": "^7.0.0-0",
"babel-jest": "^23.4.0",
"camelcase": "^4.1.0",
"conventional-changelog-cli": "^2.0.5",
"husky": "^1.0.0-rc.13",
"jest": "^23.5.0",
"rollup": "^0.65.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^4.0.0",
"ts-jest": "^23.1.4",
"tslint": "^5.9.1",
"typescript": "2.8.3"
},
"engines": {
"node": ">= 7.9"
"prerelease": "yarn test:cov"
}
},
"peerDependencies": {
"tslib": "^1.9.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.54",
"@trust/webcrypto": "^0.9.2",
"@types/jest": "^22.1.2",
"@types/node": "^9.4.5",
"babel-core": "^7.0.0-0",
"babel-jest": "^23.4.0",
"camelcase": "^4.1.0",
"jest": "^23.5.0",
"rollup": "^0.65.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^4.0.0",
"standard-version": "^4.4.0",
"ts-jest": "^23.1.4",
"tslint": "^5.9.1",
"typescript": "2.8.3"
},
"engines": {
"node": ">= 7.9"
}
}

@@ -30,3 +30,5 @@ # UID Generator

**NOTE**: For non ES6 users, you need to make sure that [tslib](https://github.com/Microsoft/tslib) is available.
### Usage

@@ -33,0 +35,0 @@ Generate a random UID:

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