-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 991 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 991 Bytes
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
{
"name": "tinyselect",
"description": "jQuery plugin to create custom select element. Supports ajax loading and filtering.",
"version": "3.2.0",
"author": "Pekka Harjamäki <mcfizh@gmail.com>",
"homepage": "https://mcfizh.github.io/tinySelect/",
"license": "MIT",
"keywords": [
"select",
"ajax",
"filter",
"jquery-plugin",
"ecosystem:jquery"
],
"main": "dist/js/tinyselect.min.js",
"scripts": {
"test:lint": "eslint src/tinyselect.js",
"test:qunit": "node run-tests.mjs",
"test": "npm run test:lint && npm run test:qunit",
"demoserver": "http-server ./demo",
"build": "rm -rf dist && node esbuild.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/McFizh/tinySelect.git"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"esbuild": "^0.27.0",
"eslint": "^10.0.0",
"globals": "^17.0.0",
"http-server": "^14.1.1",
"puppeteer": "^24.25.0",
"qunit": "^2.19.3"
}
}