{
  "name": "nepalify",
  "version": "0.5.0",
  "description": "A Javascript library that adds instant support for Nepali(नेपाली) input on HTML <input> and <textarea>.",
  "main": "index.js",
  "module": "src/index.js",
  "unpkg": "umd/nepalify.production.min.js",
  "scripts": {
    "clean": "rimraf umd cjs",
    "deps": "npm-check --update",
    "supported": "browserslist",
    "webpack": "webpack",
    "np": "np --any-branch",
    "webpack-dev-server": "webpack-dev-server",
    "dev:server": "npm run webpack-dev-server -- --env.mode development --env.target=umd",
    "dev": "npm-run-all -s clean dev:server",
    "build:umd": "npm run webpack -- --env.mode development --env.target=umd",
    "build:umdmin": "npm run webpack -- --env.mode production --env.target=umd",
    "build:cjs": "npm run webpack -- --env.mode development --env.target=commonjs2",
    "build:cjsmin": "npm run webpack -- --env.mode production --env.target=commonjs2",
    "build:cleanexample": "rimraf umd/index.html cjs/index.html",
    "build": "npm-run-all -s clean build:*",
    "format:pretty": "prettier --write src/ test/",
    "format:eslint": "eslint --fix src/**/*.js test/**/*.js",
    "format": "npm-run-all --sequential format:*",
    "release": "npm-run-all --sequential build np",
    "mocha": "mocha --recursive --require esm",
    "test": "npm run mocha",
    "test:watch": "npm run mocha -- --watch"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/suvash/nepalify.git"
  },
  "files": [
    "LICENSE",
    "README.md",
    "CHANGELOG.md",
    "index.js",
    "src/",
    "cjs/",
    "umd/"
  ],
  "keywords": [
    "nepali",
    "romanized",
    "unicode",
    "keyboard",
    "layout",
    "नेपाली"
  ],
  "author": "Suvash Thapaliya",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/suvash/nepalify/issues"
  },
  "homepage": "https://github.com/suvash/nepalify#readme",
  "devDependencies": {
    "@babel/core": "^7.13.8",
    "@babel/preset-env": "^7.13.8",
    "babel-loader": "^8.2.2",
    "browserslist": "^4.16.3",
    "chai": "^4.3.0",
    "core-js": "^3.9.0",
    "eslint": "^7.20.0",
    "eslint-config-prettier": "^8.1.0",
    "eslint-config-standard": "^16.0.2",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-promise": "^4.3.1",
    "eslint-plugin-standard": "^5.0.0",
    "esm": "^3.2.25",
    "html-webpack-plugin": "^4.3.0",
    "mocha": "^8.3.0",
    "np": "^7.4.0",
    "npm-check": "^5.9.2",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.2.1",
    "rimraf": "^3.0.2",
    "webpack": "^4.43.0",
    "webpack-cli": "^3.3.11",
    "webpack-dev-server": "^3.11.2",
    "webpack-merge": "^4.2.2"
  },
  "browserslist": [
    "cover 99.5%",
    "ie 11",
    "ie 10",
    "ie 9"
  ],
  "babel": {
    "presets": [
      [
        "@babel/preset-env",
        {
          "useBuiltIns": "usage",
          "corejs": {
            "version": 3,
            "proposals": true
          }
        }
      ]
    ]
  }
}
