-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.2 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
{
"name": "jquery-test-runner",
"version": "0.1.0",
"description": "A test runner built by the jQuery team to run QUnit tests in real browsers using Selenium and BrowserStack",
"type": "module",
"main": "index.js",
"bin": {
"jquery-test-runner": "bin/command.js",
"jtr": "bin/command.js"
},
"scripts": {
"lint": "eslint .",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jquery/jquery-test-runner.git"
},
"keywords": [
"jquery-test-runner",
"jtr",
"jtr-serve",
"jquery",
"test",
"qunit",
"selenium",
"browserstack"
],
"license": "MIT",
"author": "Timmy Willison <[email protected]>",
"bugs": {
"url": "https://github.com/jquery/jquery-test-runner/issues"
},
"homepage": "https://github.com/jquery/jquery-test-runner#readme",
"dependencies": {
"browserstack-local": "^1.5.6",
"chalk": "^5.4.1",
"commander": "^13.0.0",
"diff": "^7.0.0",
"exit-hook": "^4.0.0",
"jsdom": "^25.0.1",
"raw-body": "^3.0.0",
"selenium-webdriver": "^4.27.0",
"yaml": "^2.6.1"
},
"devDependencies": {
"@types/selenium-webdriver": "^4.1.27",
"eslint": "^9.17.0",
"eslint-config-jquery": "^3.0.2",
"globals": "^15.14.0"
}
}