-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.59 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
{
"name": "@buuhv/number-mask",
"version": "1.0.2",
"private": false,
"babel": {
"presets": [],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"scripts": {
"build": "tsc --build",
"login": "npm login --registry=https://registry.npmjs.org/"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"nodemon": "^2.0.6",
"tsc-watch": "^4.2.9",
"typescript": "^4.0.5"
},
"files": [
"index.js",
"index.js.map",
"index.d.ts",
"README.md"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/buuhvprojects/node-number-mask.git"
},
"keywords": [
"Node Number Mask",
"Node mask",
"javascript mask",
"cnpj mask",
"cpf mask",
"telefone mask",
"cep mask"
],
"author": "BuuhV",
"license": "MIT",
"bugs": {
"url": "https://github.com/buuhvprojects/node-number-mask/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {}
}