-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.34 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "js-input-masking-polyfill",
"version": "0.0.9",
"description": "A polyfill for the Intl.InputMask proposal.",
"main": "./dist/index.js",
"browser": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"module": "./src/index.js",
"scripts": {
"start": "npx http-server",
"fix": "npx prettier --write .",
"clean": "shx rm -rf ./dist && shx mkdir ./dist",
"build": "npm run clean && npm run fix && terser --compress --mangle --module --output ./dist/index.js -- ./src/index.js && terser --compress --mangle --module --output ./dist/credit-card-number.js -- ./src/credit-card-number.js",
"prepare": "npm run build"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tomayac/js-input-masking-polyfill.git"
},
"keywords": [
"intl.inputmask",
"intl",
"input masking",
"input mask",
"i18n"
],
"author": "Thomas Steiner (tomac@google.com)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tomayac/js-input-masking-polyfill/issues"
},
"homepage": "https://github.com/tomayac/js-input-masking-polyfill#readme",
"devDependencies": {
"http-server": "^13.0.1",
"libphonenumber-js": "^1.9.26",
"prettier": "^2.3.2",
"shx": "^0.3.3",
"terser": "^5.7.2"
}
}