-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 833 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 833 Bytes
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
{
"name": "somewhat",
"version": "1.0.0",
"description": "helper that allows you to wildcard search recursively through a large js object such as window or document",
"main": "src/cjs/Somewhat.js",
"module": "src/esm/Somewhat.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JustinLawrenceMS/somewhat.git"
},
"keywords": [
"search object",
"object enumeration"
],
"author": "Justin Lawrence, MS",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/JustinLawrenceMS/somewhat/issues"
},
"homepage": "https://github.com/JustinLawrenceMS/somewhat#readme",
"dependencies": {
"jest": "^29.7.0"
},
"devDependencies": {
"jest-environment-jsdom": "^29.7.0"
}
}