forked from webdriverio/query-selector-shadow-dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1011 Bytes
/
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
{
"name": "query-selector-ponyfill",
"version": "1.0.4",
"description": "use querySelector syntax to search for nodes inside of (nested) shadow roots",
"main": "dist/query-selector-ponyfill.js",
"types": "dist/query-selector-ponyfill.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "npm run lint",
"lint": "eslint src/**/*.js",
"build": "rm -rf dist && tsc"
},
"files": [
"dist/"
],
"contributors": [
"Nikhil Verma <NikhilVerma>",
"George Griffiths <GeorgeGriff>"
],
"keywords": [
"webcomponents",
"automation",
"queryselector",
"ponyfill",
"shadowdom",
"web-components",
"testing",
"webdriver",
"protractor",
"selenium",
"webdriverio",
"codeceptjs"
],
"license": "MIT",
"devDependencies": {
"eslint": "^7.19.0",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"repository": {
"type": "git",
"url": "https://github.com/NikhilVerma/query-selector-ponyfill"
}
}