-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.95 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
{
"name": "@nepada/phone-number-input",
"version": "1.2.1",
"type": "module",
"description": "Client side script of Phone number form input for Nette forms.",
"keywords": [
"phone number",
"input",
"form",
"validation",
"nette"
],
"author": {
"name": "Petr Morávek",
"email": "[email protected]"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/nepada/phone-number-input.git"
},
"bugs": "https://github.com/nepada/phone-number-input/issues",
"peerDependencies": {
"libphonenumber-js": "^1.10.0",
"nette-forms": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^9.13.0",
"@nepada/eslint-config": "^2.0.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^9.13.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.8.3",
"globals": "^15.11.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"libphonenumber-js": "^1.10.0",
"nette-forms": "^3.1.0",
"rollup": "^4.24.2"
},
"main": "dist/commonjs/index.js",
"module": "src/assets/index.js",
"files": [
"src/assets",
"dist"
],
"scripts": {
"lint": "eslint src/assets build tests/assets",
"test": "jest --config tests/jest.config.json tests/assets/**.test.js",
"clean": "rm -rf ./dist/*",
"build:cjs": "rollup --config build/rollup.config.cjs.js",
"build:umd": "rollup --config build/rollup.config.umd.js",
"build": "npm run clean && npm run build:cjs && npm run build:umd"
}
}