Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'package.json')
-rw-r--r--package.json5
1 files changed, 3 insertions, 2 deletions
diff --git a/package.json b/package.json
index 1593d3bbc6..5fb7d3b13c 100644
--- a/package.json
+++ b/package.json
@@ -9,6 +9,7 @@
"engines": {
"node": ">=10"
},
+ "type": "module",
"dependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.17.10",
@@ -68,7 +69,7 @@
"postinstall": "yarn run build",
"build": "webpack",
"css-lint": "stylelint -s scss \"themes/**/scss/*.scss\" \"setup/scss/*.scss\"",
- "js-lint": "eslint js/src test/javascript test/jest jest.config.js",
- "test": "jest"
+ "js-lint": "eslint js/src test/javascript jest.config.cjs",
+ "test": "yarn node --experimental-vm-modules $(yarn bin jest)"
}
}