aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
authorTimmy Willison <timmywil@users.noreply.github.com>2024-03-29 09:13:46 -0400
committerGitHub <noreply@github.com>2024-03-29 09:13:46 -0400
commit91df20be6b488ac6cf4da291d7ee3aa5d6feac73 (patch)
tree56b5c4f8b96a8323e3a6ce9c02c3e84c85a9d6d5 /package.json
parent802642c37323d5fc05bfa4cee90a900953f9a98d (diff)
downloadjquery-ui-91df20be6b488ac6cf4da291d7ee3aa5d6feac73.tar.gz
jquery-ui-91df20be6b488ac6cf4da291d7ee3aa5d6feac73.zip
Tests: replace grunt-contrib-qunit with jQuery test runner
- add filestash workflow Close gh-2221
Diffstat (limited to 'package.json')
-rw-r--r--package.json18
1 files changed, 14 insertions, 4 deletions
diff --git a/package.json b/package.json
index c4cc3ab46..5da10f5df 100644
--- a/package.json
+++ b/package.json
@@ -45,21 +45,29 @@
},
"license": "MIT",
"scripts": {
- "test": "grunt"
+ "build": "grunt build",
+ "lint": "grunt lint",
+ "test:server": "node tests/runner/server.js",
+ "test:unit": "node tests/runner/command.js",
+ "test": "grunt && npm run test:unit -- -h"
},
"dependencies": {
"jquery": ">=1.8.0 <4.0.0"
},
"devDependencies": {
+ "body-parser": "1.20.2",
"commitplease": "3.2.0",
- "eslint-config-jquery": "3.0.0",
+ "diff": "5.2.0",
+ "eslint-config-jquery": "3.0.2",
+ "exit-hook": "4.0.0",
+ "express": "4.19.1",
+ "express-body-parser-error-handler": "1.0.7",
"grunt": "1.6.1",
"grunt-bowercopy": "1.2.5",
"grunt-cli": "1.4.3",
"grunt-compare-size": "0.4.2",
"grunt-contrib-concat": "2.1.0",
"grunt-contrib-csslint": "2.0.0",
- "grunt-contrib-qunit": "7.0.0",
"grunt-contrib-requirejs": "1.0.0",
"grunt-contrib-uglify": "5.2.2",
"grunt-eslint": "24.0.1",
@@ -67,7 +75,9 @@
"grunt-html": "16.0.0",
"load-grunt-tasks": "5.1.0",
"rimraf": "4.4.1",
- "testswarm": "1.1.2"
+ "selenium-webdriver": "4.18.1",
+ "testswarm": "1.1.2",
+ "yargs": "17.7.2"
},
"keywords": []
}