Use camel case naming for class members
[phpmyadmin.git] / package.json
blobde6919a6564ee3deca6916af4c3ca50343b31990
2   "name": "phpmyadmin",
3   "version": "5.1.0-dev",
4   "description": "A web interface for MySQL and MariaDB",
5   "repository": "https://github.com/phpmyadmin/phpmyadmin.git",
6   "author": "The phpMyAdmin Team <developers@phpmyadmin.net> (https://www.phpmyadmin.net/team/)",
7   "license": "GPL-2.0",
8   "private": true,
9   "engines": {
10     "node": ">=10"
11   },
12   "dependencies": {
13     "blueimp-md5": "^2.15.0",
14     "bootstrap": "4.5.2",
15     "codemirror": "5.56.0",
16     "jqplot": "^1.0.9",
17     "jquery": "3.5.1",
18     "jquery-debounce-throttle": "^1.0.6-rc.0",
19     "jquery-fullscreen-plugin": "^1.1.5",
20     "jquery-hashchange": "^2.0.0",
21     "jquery-migrate": "3.3.1",
22     "jquery-mousewheel": "3.1.13",
23     "jquery-ui": "1.12.1",
24     "jquery-ui-timepicker-addon": "1.6.3",
25     "jquery-uitablefilter": "^1.0.0",
26     "jquery-validation": "1.19.2",
27     "jquery.event.drag": "2.2.2",
28     "js-cookie": "2.2.1",
29     "ol": "6.4.3",
30     "popper.js": "^1.16.1",
31     "sass": "^1.26.3",
32     "stickyfilljs": "2.1.0",
33     "tablesorter": "^2.31.3",
34     "tracekit": "0.4.5",
35     "u2f-api-polyfill": "0.4.4",
36     "updated-jqplot": "1.0.9",
37     "zxcvbn": "4.4.2"
38   },
39   "devDependencies": {
40     "@babel/cli": "^7.11.5",
41     "@babel/core": "^7.11.5",
42     "@babel/preset-env": "^7.11.5",
43     "eslint": "^7.5.0",
44     "eslint-plugin-compat": "^3.8.0",
45     "eslint-plugin-no-jquery": "^2.5.0",
46     "stylelint": "^13.6.1",
47     "stylelint-config-recommended-scss": "^4.2.0",
48     "stylelint-config-standard": "^20.0.0",
49     "stylelint-scss": "^3.18.0"
50   },
51   "resolutions": {
52     "kind-of": "^6.0.3",
53     "lodash": "^4.17.19"
54   },
55   "scripts": {
56     "postinstall": "yarn run --silent css-compile --quiet --style=compressed && yarn run --silent js-compile --quiet",
57     "css-compile": "sass themes/pmahomme/scss:themes/pmahomme/css themes/original/scss:themes/original/css themes/metro/scss:themes/metro/css themes/bootstrap/scss:themes/bootstrap/css",
58     "css-lint": "stylelint --syntax scss \"themes/**/scss/*.scss\"",
59     "js-lint": "eslint js/src",
60     "js-compile": "babel js/src -d js/dist"
61   }