-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.62 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
{
"name": "@themarkup/blacklight-query",
"version": "1.0.0",
"description": "A simple tool to generate Blacklight-Collector scans of a list of urls",
"main": "src/main.ts",
"bin": "./blacklight-query",
"funding": {
"type": "individual",
"url": "https://themarkup.org/donate"
},
"scripts": {
"main": "ts-node src/main.ts",
"test": "jest",
"clean": "rimraf outputs -i",
"prettier": "prettier \"*.ts\" --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-markup/blacklight-query.git"
},
"author": "Miles Hilton",
"license": "https://github.com/the-markup/blacklight-query#licensing",
"bugs": {
"url": "https://github.com/the-markup/blacklight-query/issues"
},
"homepage": "https://github.com/the-markup/blacklight-query#readme",
"dependencies": {
"@themarkup/blacklight-collector": "^3.4.0",
"ts-progress": "^0.1.9"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.6.1",
"@types/progress": "^2.0.7",
"@types/tough-cookie": "^4.0.5",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"jest": {
"testPathIgnorePatterns": [
"shared",
"stack.js"
],
"preset": "ts-jest",
"globals": {
"__DEV_SERVER__": "http://localhost:8125",
"ts-jest": {
"diagnostics": false
}
}
},
"publishConfig": {
"access": "public"
}
}