{
  "name": "priority-plus-selected",
  "version": "1.0.4",
  "description": "A modern implementation of the priority plus navigation pattern along with selected item handling",
  "type": "module",
  "module": "dist/priority-plus.esm.js",
  "browser": "dist/priority-plus.js",
  "exports": {
    "import": "./dist/priority-plus.esm.js",
    "default": "./dist/priority-plus.js"
  },
  "types": "dist/types/priorityPlus.d.ts",
  "scripts": {
    "dev": "esbuild src/browser.ts --bundle --sourcemap --format=iife --servedir=www --outdir=www/assets",
    "prebuild": "rimraf dist",
    "build": "concurrently \"npm:build:*\"",
    "build:esm": "esbuild src/priorityPlus.ts --bundle --minify --format=esm --outfile=dist/priority-plus.esm.js",
    "build:iife": "esbuild src/browser.ts --bundle --minify --format=iife --outfile=dist/priority-plus.js",
    "build:types": "tsc --emitDeclarationOnly --declarationDir dist/types",
    "test": "npm run test:types && npm run test:lint && npm run test:e2e",
    "test:types": "tsc --noEmit",
    "test:lint": "tslint -c tslint.json 'src/**/*.ts'",
    "test:e2e": "npm run dev & wait-on http-get://localhost:8000 && cypress run"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/SamrithaS/priority-plus"
  },
  "author": {
    "name": "Jay Freestone",
    "email": "mail@jayfreestone.com",
    "url": "https://www.jayfreestone.com/"
  },
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/SamrithaS/priority-plus/issues"
  },
  "homepage": "https://github.com/samrithas/priority-plus#readme",
  "dependencies": {},
  "devDependencies": {
    "@babel/core": "^7.13.14",
    "@babel/preset-env": "^7.13.12",
    "@cypress/webpack-preprocessor": "^5.6.0",
    "@types/chai": "^4.2.15",
    "@types/mocha": "^8.2.2",
    "babel-loader": "^8.2.2",
    "concurrently": "^6.0.0",
    "cypress": "^6.8.0",
    "esbuild": "^0.11.2",
    "rimraf": "^3.0.2",
    "ts-loader": "^8.1.0",
    "tslib": "^2.1.0",
    "tslint": "^6.1.2",
    "typescript": "^4.2.3",
    "wait-on": "^5.3.0",
    "webpack": "^5.28.0"
  },
  "keywords": [
    "navigation",
    "menu",
    "responsive",
    "priority"
  ],
  "bundlesize": [
    {
      "path": "./dist/priority-plus.*.js",
      "maxSize": "2.5 kB"
    }
  ],
  "release": {
    "branches": ["rearrange-selected-nav-item"],
    "plugins": [
      "@semantic-release/commit-analyzer",
      "@semantic-release/release-notes-generator",
      "@semantic-release/npm",
      [
        "@semantic-release/github",
        {
          "assets": [
            "dist/**/*"
          ]
        }
      ]
    ]
  }
}
