-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.17 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
{
"name": "element-picker",
"version": "1.0.0",
"description": "Lightweight JavaScript HTML element picker. Hover to highlight and click to select DOM elements for inspection, page builders, QA tools, and extensions.",
"main": "src/index.js",
"author": {
"name": "James Bechet",
"email": "jamesbechet@gmail.com",
"url": "https://jamesbechet.com/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jamesbechet/element-picker.git"
},
"bugs": {
"url": "https://github.com/jamesbechet/element-picker/issues"
},
"homepage": "https://github.com/jamesbechet/element-picker#readme",
"keywords": [
"element picker",
"html element picker",
"javascript element picker",
"dom picker",
"element selector",
"css selector",
"hover highlight",
"pick element",
"get hovered element",
"get clicked element",
"dom inspector",
"visual selector"
],
"devDependencies": {
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0"
},
"scripts": {
"test": "jest --passWithNoTests",
"test:coverage": "jest --coverage"
},
"jest": {
"testEnvironment": "jsdom"
}
}