-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·107 lines (107 loc) · 2.38 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "text-mask-vat-id",
"version": "1.0.2",
"description": "Text mask for VAT identification number",
"main": "dist/text-mask-vat-id.cjs.js",
"module": "dist/text-mask-vat-id.esm.js",
"browser": "dist/text-mask-vat-id.umd.js",
"author": "Dimitri NICOLAS <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/dimitrinicolas/text-mask-vat-id",
"bugs": {
"url": "https://github.com/dimitrinicolas/text-mask-vat-id/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dimitrinicolas/text-mask-vat-id.git"
},
"keywords": [
"text-mask",
"vat",
"tva",
"btw-nr",
"mwst-nr",
"ддс",
"pdv-id",
"oib",
"φπα",
"dič",
"cvr",
"kmkr",
"alv nro momsnummer",
"ust-idnr",
"αφμ",
"anum",
"cbl",
"p.iva",
"pvn",
"nip",
"nipc",
"nif",
"cif",
"ič dph",
"id za ddv",
"momsnr",
"nipt",
"abn",
"унп",
"bn",
"vsk",
"vat tin",
"cst tin",
"npwp",
"nzbn",
"orgnr",
"инн",
"c.o.e.",
"mwst",
"інпп",
"стир",
"cuit",
"cnpj",
"cpf",
"rut",
"ruc",
"nit",
"rtn",
"rnc",
"rif"
],
"watch": {
"build": "./src/**/*.*"
},
"scripts": {
"publish": "clean-publish --files .nyc_output coverage",
"build": "rollup -c && uglifyjs dist/text-mask-vat-id.umd.js -o dist/text-mask-vat-id.umd.min.js -m",
"dev": "npm-watch",
"lint": "eslint src/**/**/*.js",
"test": "nyc --reporter=lcov --reporter=text ava",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"ava": "^1.3.1",
"babel-eslint": "^10.0.1",
"clean-publish": "^1.1.0",
"coveralls": "^3.0.3",
"eslint": "^5.15.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"http-server": "^0.11.1",
"install": "^0.12.2",
"npm": "^6.9.0",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.6.0",
"nyc": "^13.3.0",
"rollup": "^1.6.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-node-resolve": "^4.0.1",
"text-mask-core": "^5.1.2",
"uglify-js": "^3.4.9"
}
}