-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 801 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 801 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
34
35
36
{
"name": "wgrep",
"version": "0.4.11",
"description": "Find text within all resources of a webpage",
"main": "index.js",
"bin": {
"wgrep": "index.js"
},
"scripts": {
"test": "jest",
"test-ci": "jest --ci",
"test-thr": "jest --maxWorkers=2",
"test-seq": "jest --runInBand",
"test-opn": "jest --runInBand --detectOpenHandles",
"test-e2e": "node index.js wgrep https://github.com/stav/wgrep"
},
"keywords": [
"find",
"grep",
"web",
"webpage"
],
"author": "steven@primesite.dev",
"license": "Apache-2.0",
"dependencies": {
"co": "^4.6.0",
"co-prompt": "^1.0.0",
"commander": "^11.1.0",
"fs-extra": "^11.2.0",
"puppeteer": "^22.15.0",
"shelljs": "^0.8.5"
},
"devDependencies": {
"jest": "^29.7.0"
}
}