UNPKG

@zeedhi/autonumeric

Version:

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 Am

149 lines (148 loc) 5.57 kB
{ "name": "@zeedhi/autonumeric", "version": "4.6.3", "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": "Robert Knothe <bob@decorplanit.com>", "contributors": [ "Alexandre Bonneau <alexandre.bonneau@linuxfr.eu>", "Sokolov Yura", "Carlos Gonzales", "Ney Estrabelli", "Carlos Ghan", "Boris Cherny", "Maxwell Barvian", "Sasha Koss", "Mic Biert", "Peter Boccia", "Bruno Batista", "Jarin Udom", "Raymond Lehnhoff", "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", "build": "npm run clean:build && npm run build:dev && npm run build:prd && npm run es-check", "build:dev": "webpack --config config/webpack.config.dev.js", "build:prd": "webpack --config config/webpack.config.prd.js", "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": "npm run clean:build && npm run clean:coverage && npm run clean:log && npm run clean:e2e", "lint": "eslint --ext .js src test/unit test/e2e", "lintfix": "eslint --fix --ext .js src test/unit test/e2e", "postinstall": "node yarnfix.js", "test": "npm run test:unit && npm run 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": "npm run test:unitheadless", "travis:lint": "npm run 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" ] }, "directories": { "doc": "doc", "test": "test" }, "publishConfig": { "access": "public" } }