-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.21 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
{
"name": "@tadashi/currency",
"version": "3.4.0",
"description": "The simple and tiny script for currency input mask",
"keywords": [
"currency",
"mask",
"input",
"tiny"
],
"bug": {
"url": "https://github.com/lagden/currency",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Thiago Lagden",
"email": "[email protected]"
},
"type": "module",
"main": "src/currency.js",
"exports": {
".": {
"browser": "./src/currency.js",
"import": "./src/currency.js"
},
"./package.json": "./package.json"
},
"files": [
"src",
"license",
"README.md"
],
"repository": "lagden/currency",
"scripts": {
"eslint": "eslint --ignore-path .gitignore .",
"pretest": "npm run eslint",
"test": "jest test --coverage --coverageReporters=lcov --coverageReporters=text"
},
"devDependencies": {
"@babel/preset-env": "7.24.3",
"@testing-library/dom": "9.3.4",
"@testing-library/user-event": "14.5.2",
"eslint": "8.57.0",
"eslint-plugin-unicorn": "51.0.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"simulant": "0.2.2"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}