forked from getgauge/taiko
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 4.22 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"$schema": "http://json.schemastore.org/package",
"name": "taiko",
"version": "1.4.0",
"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": "eslint --ext js,ts .",
"lint:fix": "eslint --fix --ext js,ts .",
"dtslint": "node ./test/types-test-support/generate-types-test.js && eslint --fix --ext js,ts . && dtslint types/taiko",
"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 install && 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",
"git add"
]
},
"taiko": {
"browser": {
"version": "126.0.6468.0",
"revision": "1298436",
"downloads": {
"chrome": [
{
"platform": "linux64",
"url": "https://storage.googleapis.com/chrome-for-testing-public/126.0.6468.0/linux64/chrome-linux64.zip"
},
{
"platform": "mac-arm64",
"url": "https://storage.googleapis.com/chrome-for-testing-public/126.0.6468.0/mac-arm64/chrome-mac-arm64.zip"
},
{
"platform": "mac-x64",
"url": "https://storage.googleapis.com/chrome-for-testing-public/126.0.6468.0/mac-x64/chrome-mac-x64.zip"
},
{
"platform": "win32",
"url": "https://storage.googleapis.com/chrome-for-testing-public/126.0.6468.0/win32/chrome-win32.zip"
},
{
"platform": "win64",
"url": "https://storage.googleapis.com/chrome-for-testing-public/126.0.6468.0/win64/chrome-win64.zip"
}
]
}
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test:api",
"pre-push": "npm run dtslint && 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": "^1.0.2",
"@babel/eslint-parser": "^7.19.1",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"clean-css": "^5.3.1",
"cssnano": "^5.1.14",
"dtslint": "^4.2.1",
"eleventy-plugin-toc": "^1.1.5",
"eslint": "^8.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-no-instanceof": "file:./eslint-plugin-no-instanceof",
"eslint-plugin-prettier": "^4.2.1",
"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",
"prettier": "^2.8.2",
"rewire": "^6.0.0",
"sinon": "^15.0.1",
"typescript": "^4.9.4"
}
}