-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.77 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
{
"name": "@nepada/autocomplete-input",
"version": "1.1.2",
"type": "module",
"description": "Client side of Autocomplete text input for Nette forms.",
"keywords": [
"autocomplete",
"typeahead",
"form",
"nette"
],
"author": {
"name": "Petr Morávek",
"email": "[email protected]"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/nepada/autocomplete-input.js.git"
},
"bugs": "https://github.com/nepada/autocomplete-input.js/issues",
"peerDependencies": {
"corejs-typeahead": "^1.3.1",
"jquery": ">=1.11",
"nette-forms": "^3.0.3"
},
"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",
"corejs-typeahead": "^1.3.1",
"eslint": "^9.13.0",
"eslint-plugin-import": "^2.31.0",
"globals": "^15.11.0",
"jquery": ">=1.11",
"nette-forms": "^3.0.3",
"rollup": "^4.24.2"
},
"main": "dist/js/commonjs/index.js",
"module": "src/js/index.js",
"files": [
"src",
"dist"
],
"scripts": {
"lint": "eslint src build",
"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"
}
}