-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.57 KB
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-test-runner",
"version": "0.3.1",
"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 .",
"prepare": "husky",
"release": "release-it",
"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 <timmywil@users.noreply.github.com>",
"bugs": {
"url": "https://github.com/jquery/jquery-test-runner/issues"
},
"homepage": "https://github.com/jquery/jquery-test-runner#readme",
"dependencies": {
"browserstack-local": "^1.5.13",
"chalk": "^5.6.2",
"commander": "^15.0.0",
"diff": "^9.0.0",
"exit-hook": "^5.1.0",
"jsdom": "^29.1.1",
"raw-body": "^3.0.2",
"selenium-webdriver": "^4.45.0",
"yaml": "^2.9.0"
},
"devDependencies": {
"@commitlint/cli": "^21.2.0",
"@commitlint/config-conventional": "^21.2.0",
"@release-it/conventional-changelog": "^11.0.1",
"@types/selenium-webdriver": "^4.35.6",
"conventional-changelog-conventionalcommits": "^9.3.1",
"eslint": "^10.6.0",
"eslint-config-jquery": "^3.0.2",
"globals": "^17.7.0",
"husky": "^9.1.7",
"release-it": "^20.2.1"
}
}