{
  "name": "autonumeric",
  "version": "4.6.0",
  "description": "autoNumeric is a standalone Javascript library that provides live *as-you-type* formatting for international numbers and currencies. It supports most international numeric formats and currencies including those used in Europe, Asia, and North and South America.",
  "main": "dist/autoNumeric.js",
  "browser": "dist/autoNumeric.min.js",
  "module": "src/main.js",
  "readmeFilename": "README.md",
  "keywords": [
    "currency",
    "money",
    "monetary",
    "Euro",
    "Dollar",
    "Pound",
    "number",
    "numeric",
    "format",
    "form",
    "input",
    "mask",
    "as-you-type",
    "live"
  ],
  "license": "MIT",
  "author": {
    "name": "Robert Knothe",
    "email": "bob@decorplanit.com"
  },
  "contributors": [
    {
      "name": "Alexandre Bonneau",
      "email": "alexandre.bonneau@linuxfr.eu"
    },
    {
      "name": "Sokolov Yura"
    },
    {
      "name": "Carlos Gonzales"
    },
    {
      "name": "Ney Estrabelli"
    },
    {
      "name": "Carlos Ghan"
    },
    {
      "name": "Boris Cherny"
    },
    {
      "name": "Maxwell Barvian"
    },
    {
      "name": "Sasha Koss"
    },
    {
      "name": "Mic Biert"
    },
    {
      "name": "Peter Boccia"
    },
    {
      "name": "Bruno Batista"
    },
    {
      "name": "Jarin Udom"
    },
    {
      "name": "Raymond Lehnhoff"
    },
    {
      "name": "Cory Foy"
    }
  ],
  "homepage": "https://github.com/autoNumeric/autoNumeric/",
  "dependencies": {},
  "devDependencies": {
    "@babel/cli": "^7.5.5",
    "@babel/core": "^7.4.3",
    "@babel/plugin-transform-object-assign": "^7.2.0",
    "@babel/polyfill": "^7.4.3",
    "@babel/preset-env": "^7.4.3",
    "@babel/register": "^7.4.0",
    "@wdio/cli": "^5.12.5",
    "@wdio/jasmine-framework": "^5.12.1",
    "@wdio/local-runner": "^5.12.5",
    "@wdio/selenium-standalone-service": "^5.12.1",
    "@wdio/spec-reporter": "^5.12.1",
    "@wdio/static-server-service": "^5.12.1",
    "@wdio/sync": "^5.12.3",
    "babel-eslint": "^10.0.3",
    "babel-loader": "^8.0.5",
    "compression-webpack-plugin": "^3.0.0",
    "coveralls": "^3.0.6",
    "es-check": "^5.0.0",
    "eslint": "^6.3.0",
    "eslint-friendly-formatter": "^4.0.1",
    "eslint-loader": "^3.0.0",
    "imports-loader": "^0.8.0",
    "jasmine-core": "^3.4.0",
    "karma": "^4.1.0",
    "karma-chrome-launcher": "^3.1.0",
    "karma-coverage": "^2.0.1",
    "karma-firefox-launcher": "^1.1.0",
    "karma-jasmine": "^2.0.1",
    "karma-mocha-reporter": "^2.2.5",
    "karma-phantomjs-launcher": "^1.0.4",
    "karma-sourcemap-loader": "^0.3.7",
    "karma-spec-reporter": "^0.0.32",
    "karma-webpack": "^4.0.2",
    "loader-utils": "^1.1.0",
    "phantomjs-prebuilt": "^2.1.16",
    "rimraf": "^3.0.0",
    "uglify-js": "^3.5.4",
    "uglifyjs-webpack-plugin": "^2.0.1",
    "webdriverio": "^5.7.2",
    "webpack": "^4.30.0",
    "webpack-cli": "^3.3.0",
    "webpack-merge": "^4.1.2"
  },
  "scripts": {
    "authors": "sh tools/authors.sh",
    "postinstall": "node yarnfix.js",
    "build:dev": "webpack --config config/webpack.config.dev.js",
    "build:prd": "webpack --config config/webpack.config.prd.js",
    "build": "yarn clean:build && yarn build:dev && yarn build:prd && yarn es-check",
    "clean:build": "rimraf dist",
    "clean:coverage": "rimraf test/unit/coverage",
    "clean:e2e": "rimraf test/e2e/reports/* && rimraf test/e2e/screenshots/*",
    "clean:log": "rimraf npm-debug.log selenium-debug.log test/e2e/selenium.log yarn-error.log",
    "clean": "yarn clean:build && yarn clean:coverage && yarn clean:log && yarn clean:e2e",
    "lint": "eslint --ext .js src test/unit test/e2e",
    "lintfix": "eslint --fix --ext .js src test/unit test/e2e",
    "test": "yarn test:unit && yarn test:e2e",
    "test:unit": "karma start test/unit/karma.conf.js --single-run",
    "test:unitprogress": "karma start test/unit/karma.conf.js --single-run --reporters 'progress'",
    "test:unitp": "karma start test/unit/karma.conf.js --single-run --browsers PhantomJS",
    "test:unitf": "karma start test/unit/karma.conf.js --single-run --browsers Firefox",
    "test:unitc": "karma start test/unit/karma.conf.js --single-run --browsers Chrome",
    "test:unitpp": "karma start test/unit/karma.conf.js --single-run --browsers PhantomJS --reporters 'progress'",
    "test:unitfp": "karma start test/unit/karma.conf.js --single-run --browsers Firefox --reporters 'progress'",
    "test:unitfhp": "karma start test/unit/karma.conf.js --single-run --browsers FirefoxDeveloperHeadless --reporters 'progress'",
    "test:unitcp": "karma start test/unit/karma.conf.js --single-run --browsers Chrome --reporters 'progress'",
    "test:unitchp": "karma start test/unit/karma.conf.js --single-run --browsers ChromeHeadless --reporters 'progress'",
    "test:unitheadless": "karma start test/unit/karma.conf.js --single-run --browsers FirefoxDeveloperHeadless,ChromeHeadless --reporters 'progress'",
    "test:e2e": "wdio test/e2e/wdio.local.conf.js",
    "travis:test": "yarn test:unitheadless",
    "travis:lint": "yarn lint",
    "es-check": "es-check es5 dist/*.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/autoNumeric/autoNumeric.git"
  },
  "bugs": {
    "url": "https://github.com/autoNumeric/autoNumeric/issues"
  },
  "autoupdate": {
    "source": "git",
    "target": "git://github.com/autoNumeric/autoNumeric.git",
    "basePath": "",
    "files": [
      "src/AutoNumeric.js",
      "src/AutoNumericDefaultSettings.js",
      "src/AutoNumericEnum.js",
      "src/AutoNumericEvents.js",
      "src/AutoNumericHelper.js",
      "src/AutoNumericOptions.js",
      "src/AutoNumericPredefinedOptions.js",
      "src/main.js"
    ]
  }
}
