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

makeup-listbox

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

makeup-listbox - npm Package Compare versions

Comparing version 0.1.0 to 0.2.0

dist/cjs/index.js

23

package.json
{
"name": "makeup-listbox",
"description": "A JavaScript class representing an ARIA listbox",
"version": "0.1.0",
"main": "dist/index.js",
"version": "0.2.0",
"main": "./dist/cjs/index.js",
"module": "./dist/mjs/index.js",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"repository": "https://github.com/makeup-js/makeup-js/tree/master/packages/makeup-listbox",

@@ -10,11 +17,15 @@ "author": "Ian McBurnie <ianmcburnie@hotmail.com>",

"scripts": {
"compile": "babel src --out-dir dist"
"compile": "npm run compile:mjs && npm run compile:cjs",
"compile:mjs": "esbuild src/index.js --outfile=dist/mjs/index.js --format=esm",
"compile:cjs": "babel --plugins @babel/plugin-transform-modules-commonjs src/index.js --out-file dist/cjs/index.js",
"clean": "rimraf *.log .DS_Store"
},
"dependencies": {
"makeup-prevent-scroll-keys": "~0.1.0",
"makeup-active-descendant": "~0.4.0"
"makeup-prevent-scroll-keys": "~0.2.0",
"makeup-active-descendant": "~0.5.0"
},
"files": [
"browser.json",
"dist/index.js",
"dist/cjs/index.js",
"dist/mjs/index.js",
"package-lock.json"

@@ -21,0 +32,0 @@ ],

@@ -51,3 +51,3 @@ # makeup-listbox

```js
const Listbox = require('makeup-listbox');
import Listbox from 'makeup-listbox';

@@ -54,0 +54,0 @@ document.querySelectorAll('.listbox').forEach(function(el, i) {

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