-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.08 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
{
"name": "leak-detect",
"version": "0.0.0",
"author": "stevenwdv",
"repository": "github:stevenwdv/leak-detect",
"scripts": {
"install": "npm -w inject run pack",
"start": "node --require ts-node/register ./src/main.ts",
"debug": "node --require ts-node/register --inspect --pending-deprecation --trace-deprecation --trace-warnings ./src/main.ts",
"lint": "tsc --noEmit --emitDeclarationOnly false && eslint --max-warnings 0 .",
"lint-all": "npm run lint && npm -w inject run lint && cd ./test/ && tsc --noEmit --emitDeclarationOnly false && eslint --max-warnings 0 .",
"generate-schema": "npx typescript-json-schema ./tsconfig.json FieldsCollectorOptions --ignoreErrors --noExtraProps --strictNullChecks --required true --out ./src/crawl-config.schema.json",
"test-server": "http-server ./test/pages/",
"test": "tap"
},
"bin": {
"leak-detect": "./src/main.ts"
},
"workspaces": [
"./inject/",
"./value-searcher/"
],
"engines": {
"node": ">=17.5"
},
"dependencies": {
"@gorhill/ubo-core": "^0.1.25",
"@puppeteer/replay": "^2.7.1",
"async": "^3.2.4",
"chalk": "^4.1.2",
"js-yaml": "^4.1.0",
"jsonschema": "^1.4.1",
"progress": "^2.0.3",
"proper-lockfile": "^4.1.2",
"puppeteer": "^19.5.2",
"rambda": "^7.4.0",
"sanitize-filename": "^1.6.3",
"source-map": "^0.7.4",
"tldts": "^5.7.104",
"tracker-radar-collector": "github:stevenwdv/tracker-radar-collector#1f5598a9",
"value-searcher": "^0.0.0",
"yargs": "^17.6.2"
},
"devDependencies": {
"@types/async": "^3.2.16",
"@types/http-server": "^0.12.1",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.11.18",
"@types/progress": "^2.0.5",
"@types/proper-lockfile": "^4.1.2",
"@types/tap": "^15.0.7",
"@types/yargs": "^17.0.19",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-plugin-deprecation": "^1.3.3",
"eslint-plugin-eslint-comments": "^3.2.0",
"http-server": "^14.1.1",
"tap": "^16.3.4",
"ts-essentials": "^9.3.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"typescript-json-schema": "^0.55.0"
}
}