-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.1 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
{
"name": "npm-scan",
"version": "0.1.0",
"private": true,
"description": "Monitor npm publishes and flag newly introduced preinstall and postinstall scripts.",
"license": "MIT",
"type": "module",
"scripts": {
"producer": "node src/producer.ts",
"worker": "node src/worker.ts",
"bulk-producer": "node src/bulk-producer.ts",
"bulk-worker": "node src/bulk-worker.ts",
"dev:producer": "node --watch src/producer.ts",
"dev:worker": "node --watch src/worker.ts",
"dev:bulk-producer": "node --watch src/bulk-producer.ts",
"dev:bulk-worker": "node --watch src/bulk-worker.ts",
"fetch-packument": "node src/fetch-packument.ts",
"metrics": "node --watch src/metrics.ts",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=24"
},
"dependencies": {
"all-the-package-names": "^2.0.2341",
"bullmq": "^5.66.5",
"dotenv": "^17.2.3",
"ioredis": "^5.9.2",
"semver": "^7.6.0",
"ssh2": "^1.15.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@types/semver": "^7.5.8",
"@types/ssh2": "^1.11.0",
"typescript": "^5.9.3"
}
}