-
Notifications
You must be signed in to change notification settings - Fork 454
/
package.json
114 lines (114 loc) · 3.63 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"$schema": "http://json.schemastore.org/package",
"name": "taiko",
"version": "1.4.2",
"description": "Taiko is a Node.js library for automating Chromium based browsers",
"main": "bin/taiko.js",
"bin": {
"taiko": "bin/taiko.js"
},
"types": "./types/taiko/index.d.ts",
"scripts": {
"lint:check": "npx @biomejs/biome check",
"lint:fix": "npx @biomejs/biome check --write",
"doc": "npm run doc:api && eleventy",
"doc:serve": "npm run doc:api && eleventy --serve",
"doc:api": "node lib/documentation.js",
"test:api": "node test/unit-tests/taiko-test.js",
"examples": "cd examples && npm install && npm test",
"test:unit:silent": "mocha 'test/unit-tests/**/*.test.js' --timeout 9000 -R dot --trace-warnings --exit",
"test:unit": "mocha 'test/unit-tests/**/*.test.js' --timeout 9000 --trace-warnings --exit",
"test": "npm run test:api && npm run test:unit:silent",
"test-functional": "npm install && cd test/functional-tests && npm install && npm test",
"test-docs": "cd test/docs-tests && node prepare.js && eleventy && cd ./gauge && npm ci && npm test",
"install": "node lib/install.js",
"update-json-doc": "node build/updateJsonDoc.js",
"postinstall": "node lib/documentation.js"
},
"repository": {
"type": "git",
"url": "https://github.com/getgauge/taiko"
},
"keywords": [
"headless",
"headless-chrome",
"headless-testing",
"headless-browser"
],
"lint-staged": {
"**/*.{js,ts}": ["npm run lint:fix", "git add"]
},
"taiko": {
"browser": {
"version": "133.0.6878.0",
"revision": "1392035",
"downloads": {
"chrome": [
{
"platform": "linux64",
"url": "https://storage.googleapis.com/chrome-for-testing-public/133.0.6878.0/linux64/chrome-linux64.zip"
},
{
"platform": "mac-arm64",
"url": "https://storage.googleapis.com/chrome-for-testing-public/133.0.6878.0/mac-arm64/chrome-mac-arm64.zip"
},
{
"platform": "mac-x64",
"url": "https://storage.googleapis.com/chrome-for-testing-public/133.0.6878.0/mac-x64/chrome-mac-x64.zip"
},
{
"platform": "win32",
"url": "https://storage.googleapis.com/chrome-for-testing-public/133.0.6878.0/win32/chrome-win32.zip"
},
{
"platform": "win64",
"url": "https://storage.googleapis.com/chrome-for-testing-public/133.0.6878.0/win64/chrome-win64.zip"
}
]
}
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test:api",
"pre-push": "npm test"
}
},
"author": "getgauge",
"license": "MIT",
"dependencies": {
"@babel/parser": "^7.20.7",
"chrome-remote-interface": "^0.33.0",
"commander": "^9.5.0",
"debug": "^4.3.4",
"devtools-protocol": "0.0.1082910",
"documentation": "^14.0.1",
"extract-zip": "^2.0.1",
"fs-extra": "^11.1.0",
"https-proxy-agent": "^5.0.1",
"is-reachable": "^5.2.1",
"progress": "^2.0.3",
"proxy-from-env": "^1.1.0",
"recast": "^0.23.1"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@biomejs/biome": "^1.8.3",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"clean-css": "^5.3.1",
"cssnano": "^5.1.14",
"eleventy-plugin-toc": "^1.1.5",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.6",
"mocha": "^10.4.0",
"ncp": "^2.0.0",
"rewire": "^6.0.0",
"sinon": "^15.0.1",
"typescript": "^4.9.4"
}
}