-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.67 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
53
54
55
56
{
"name": "testcafe-browser-provider-testingbot",
"version": "2.1.0",
"description": "testingbot TestCafe browser provider plugin.",
"repository": "https://github.com/testingbot/testcafe-browser-provider-testingbot",
"homepage": "https://github.com/testingbot/testcafe-browser-provider-testingbot",
"author": {
"name": "TestingBot",
"email": "[email protected]",
"url": "https://testingbot.com"
},
"main": "lib/index",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"lint": "prettier --check '**/*.{js,ts,mjs,cjs}' && eslint .",
"format": "prettier --write '**/*.{js,ts,mjs,cjs}'",
"test": "mocha test/mocha && testcafe 'testingbot:chrome@latest:Windows 10' test/testcafe",
"prepare": "husky",
"release": "tsc && release-it --github.release",
"release:ci": "npm run release -- --ci --no-git.requireCleanWorkingDir",
"link": "npm link && npm link testcafe-browser-provider-testingbot"
},
"keywords": [
"testcafe",
"browser provider",
"testingbot testcafe",
"plugin"
],
"license": "MIT",
"dependencies": {
"deepmerge": "^4.3.1",
"mocha": "^10.7.3",
"pinkie": "^2.0.4",
"selenium-webdriver": "^4.25.0",
"testingbot-api": "^1.0.9",
"testingbot-tunnel-launcher": "^1.1.12"
},
"devDependencies": {
"@eslint/js": "8.57.0",
"@tsconfig/node20": "20.1.2",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"husky": "9.0.11",
"prettier": "3.2.5",
"pretty-quick": "4.0.0",
"release-it": "17.6.0",
"rimraf": "5.0.5",
"sinon": "^19.0.2",
"testcafe-reporter-saucelabs": "3.4.0",
"typescript": "5.3.3",
"typescript-eslint": "7.2.0"
}
}