autonumeric
Advanced tools
Comparing version 4.4.0 to 4.4.1
{ | ||
"name": "autonumeric", | ||
"version": "4.4.0", | ||
"version": "4.4.1", | ||
"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.js", | ||
"module": "src/main.js", | ||
@@ -89,2 +89,3 @@ "readmeFilename": "README.md", | ||
"coveralls": "3.0.0", | ||
"es-check": "^3.0.0", | ||
"eslint": "^4.18.1", | ||
@@ -95,5 +96,5 @@ "eslint-friendly-formatter": "^4.0.1", | ||
"jasmine-core": "^3.1.0", | ||
"karma": "^2.0.0", | ||
"karma": "^3.0.0", | ||
"karma-chrome-launcher": "^2.2.0", | ||
"karma-coverage": "^1.1.1", | ||
"karma-coverage": "^1.1.2", | ||
"karma-firefox-launcher": "^1.1.0", | ||
@@ -114,3 +115,3 @@ "karma-jasmine": "^1.1.1", | ||
"wdio-static-server-service": "^1.0.1", | ||
"webdriverio": "^4.12.0", | ||
"webdriverio": "^4.13.2", | ||
"webpack": "^4.0.1", | ||
@@ -125,3 +126,3 @@ "webpack-cli": "^2.0.9", | ||
"build:prd": "webpack --config config/webpack.config.prd.js", | ||
"build": "yarn clean:build && yarn build:dev && yarn build:prd", | ||
"build": "yarn clean:build && yarn build:dev && yarn build:prd && yarn es-check", | ||
"clean:build": "rimraf dist", | ||
@@ -145,3 +146,4 @@ "clean:coverage": "rimraf test/unit/coverage", | ||
"travis:test": "yarn test:unitp", | ||
"travis:lint": "yarn lint" | ||
"travis:lint": "yarn lint", | ||
"es-check": "es-check es5 dist/*.js" | ||
}, | ||
@@ -148,0 +150,0 @@ "repository": { |
@@ -426,77 +426,79 @@ /** | ||
// 'Normal' keys | ||
num0 : '0', | ||
num1 : '1', | ||
num2 : '2', | ||
num3 : '3', | ||
num4 : '4', | ||
num5 : '5', | ||
num6 : '6', | ||
num7 : '7', | ||
num8 : '8', | ||
num9 : '9', | ||
a : 'a', | ||
b : 'b', | ||
c : 'c', | ||
d : 'd', | ||
e : 'e', | ||
f : 'f', | ||
g : 'g', | ||
h : 'h', | ||
i : 'i', | ||
j : 'j', | ||
k : 'k', | ||
l : 'l', | ||
m : 'm', | ||
n : 'n', | ||
o : 'o', | ||
p : 'p', | ||
q : 'q', | ||
r : 'r', | ||
s : 's', | ||
t : 't', | ||
u : 'u', | ||
v : 'v', | ||
w : 'w', | ||
x : 'x', | ||
y : 'y', | ||
z : 'z', | ||
A : 'A', | ||
B : 'B', | ||
C : 'C', | ||
D : 'D', | ||
E : 'E', | ||
F : 'F', | ||
G : 'G', | ||
H : 'H', | ||
I : 'I', | ||
J : 'J', | ||
K : 'K', | ||
L : 'L', | ||
M : 'M', | ||
N : 'N', | ||
O : 'O', | ||
P : 'P', | ||
Q : 'Q', | ||
R : 'R', | ||
S : 'S', | ||
T : 'T', | ||
U : 'U', | ||
V : 'V', | ||
W : 'W', | ||
X : 'X', | ||
Y : 'Y', | ||
Z : 'Z', | ||
Semicolon : ';', | ||
Equal : '=', | ||
Comma : ',', | ||
Hyphen : '-', | ||
Minus : '-', | ||
Plus : '+', | ||
Dot : '.', | ||
Slash : '/', | ||
Backquote : '`', | ||
LeftBracket : '[', | ||
RightBracket : ']', | ||
Backslash : '\\', | ||
Quote : '\'', | ||
num0 : '0', | ||
num1 : '1', | ||
num2 : '2', | ||
num3 : '3', | ||
num4 : '4', | ||
num5 : '5', | ||
num6 : '6', | ||
num7 : '7', | ||
num8 : '8', | ||
num9 : '9', | ||
a : 'a', | ||
b : 'b', | ||
c : 'c', | ||
d : 'd', | ||
e : 'e', | ||
f : 'f', | ||
g : 'g', | ||
h : 'h', | ||
i : 'i', | ||
j : 'j', | ||
k : 'k', | ||
l : 'l', | ||
m : 'm', | ||
n : 'n', | ||
o : 'o', | ||
p : 'p', | ||
q : 'q', | ||
r : 'r', | ||
s : 's', | ||
t : 't', | ||
u : 'u', | ||
v : 'v', | ||
w : 'w', | ||
x : 'x', | ||
y : 'y', | ||
z : 'z', | ||
A : 'A', | ||
B : 'B', | ||
C : 'C', | ||
D : 'D', | ||
E : 'E', | ||
F : 'F', | ||
G : 'G', | ||
H : 'H', | ||
I : 'I', | ||
J : 'J', | ||
K : 'K', | ||
L : 'L', | ||
M : 'M', | ||
N : 'N', | ||
O : 'O', | ||
P : 'P', | ||
Q : 'Q', | ||
R : 'R', | ||
S : 'S', | ||
T : 'T', | ||
U : 'U', | ||
V : 'V', | ||
W : 'W', | ||
X : 'X', | ||
Y : 'Y', | ||
Z : 'Z', | ||
Semicolon : ';', | ||
Equal : '=', | ||
Comma : ',', | ||
Hyphen : '-', | ||
Minus : '-', | ||
Plus : '+', | ||
Dot : '.', | ||
Slash : '/', | ||
Backquote : '`', | ||
LeftParenthesis : '(', | ||
RightParenthesis: ')', | ||
LeftBracket : '[', | ||
RightBracket : ']', | ||
Backslash : '\\', | ||
Quote : '\'', | ||
@@ -503,0 +505,0 @@ // Numeric keypad keys |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17531
3659502
40