-
Notifications
You must be signed in to change notification settings - Fork 552
/
package.json
60 lines (60 loc) · 1.55 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
{
"name": "jQuery-QueryBuilder",
"version": "2.5.0",
"author": {
"name": "Damien \"Mistic\" Sorel",
"email": "[email protected]",
"url": "https://www.strangeplanet.fr"
},
"description": "jQuery plugin for user friendly query/filter creator",
"main": "dist/js/query-builder.js",
"files": [
"dist/",
"src/"
],
"dependencies": {
"bootstrap": "^5.3.0",
"@popperjs/core": "^2.11.8",
"bootstrap-icons": "^1.11.3",
"jquery": "^3.5.1",
"jquery-extendext": "^1.0.0",
"moment": "^2.29.1",
"sql-parser-mistic": "^1.2.3"
},
"devDependencies": {
"alive-server": "^1.3.0",
"awesome-bootstrap-checkbox": "^0.3.7",
"bootbox": "^6.0.0",
"bootstrap-slider": "^10.0.0",
"chosenjs": "^1.4.3",
"concurrently": "^8.2.0",
"deepmerge": "^2.1.0",
"foodoc": "^0.0.9",
"glob": "^10.3.1",
"interactjs": "^1.3.3",
"nodemon": "^2.0.22",
"sass": "^1.63.6",
"@selectize/selectize": "^0.15.2"
},
"keywords": [
"jquery",
"query",
"builder",
"filter"
],
"license": "MIT",
"homepage": "https://querybuilder.js.org",
"repository": {
"type": "git",
"url": "git://github.com/mistic100/jQuery-QueryBuilder.git"
},
"bugs": {
"url": "https://github.com/mistic100/jQuery-QueryBuilder/issues"
},
"scripts": {
"build": "node ./build/dist.mjs",
"watch:build": "nodemon --watch src -e js,scss,json ./build/dist.mjs --dev",
"watch:serve": "node ./build/liveserver.mjs",
"serve": "concurrently \"npm:watch:build\" \"npm:watch:serve\""
}
}