-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.38 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.38 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
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "clearlydefined-crawler",
"version": "2.1.2",
"description": "A crawler that walks projects and packages looking for data of interest to the ClearlyDefined project.",
"main": "./index.js",
"scripts": {
"start": "node ./index.js",
"test": "npm run mocha && npm run lint",
"mocha": "nyc mocha \"test/unit/**/*.{js,ts}\"",
"local": "node --inspect-brk=0.0.0.0:9229 ./index.js",
"integration": "mocha \"test/integration/**/*.{js,ts}\" --timeout 20000",
"lint": "npm run tsc && biome check .",
"lint:fix": "biome check . --write",
"postinstall": "patch-package",
"tsc": "tsc"
},
"keywords": [
"license",
"api",
"crawler",
"clearlydefined"
],
"author": "Jeff McAffer <jmcaffer@microsoft.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/clearlydefined/crawler.git"
},
"homepage": "https://github.com/clearlydefined/crawler#readme",
"bugs": {
"url": "https://github.com/clearlydefined/crawler"
},
"dependencies": {
"@azure/identity": "4.13.1",
"@azure/storage-blob": "12.31.0",
"@azure/storage-queue": "12.29.0",
"@clearlydefined/spdx": "github:clearlydefined/spdx#v0.1.10",
"@microsoft/refreshing-config": "0.1.3",
"applicationinsights": "3.14.0",
"ar-async": "0.1.4",
"axios": "1.15.0",
"axios-retry": "4.5.0",
"body-parser": "2.2.2",
"debug": "4.4.3",
"decompress": "4.2.1",
"decompress-tar": "4.1.1",
"decompress-tarbz2": "4.1.1",
"decompress-targz": "4.1.1",
"decompress-tarxz": "3.0.0",
"decompress-unzip": "github:clearlydefined/decompress-unzip#expose-opts",
"du": "1.0.0",
"express": "4.22.1",
"express-init": "1.1.2",
"extend": "3.0.2",
"extract-zip": "2.0.1",
"geit": "0.0.7",
"ghrequestor": "0.1.7",
"htmlencode": "0.0.5",
"js-yaml": "3.14.2",
"linebyline": "1.3.0",
"lodash": "4.18.1",
"luxon": "3.7.2",
"memory-cache": "0.2.0",
"mkdirp": "3.0.1",
"morgan": "1.10.1",
"node-html-parser": "7.1.0",
"node-uuid": "1.4.8",
"painless-config": "0.1.2",
"parse-github-url": "1.0.4",
"patch-package": "8.0.1",
"qlimit": "0.1.1",
"safe-stable-stringify": "2.5.0",
"semver": "7.7.4",
"sha.js": "2.4.12",
"spdx-correct": "3.2.0",
"throat": "6.0.2",
"tmp": "0.2.5",
"unbzip2-stream": "1.4.3",
"winston": "3.19.0",
"xml2js": "0.6.2"
},
"devDependencies": {
"@biomejs/biome": "2.4.10",
"@tsconfig/node-ts": "23.6.4",
"@tsconfig/node24": "24.0.4",
"@tsconfig/strictest": "2.0.8",
"@types/chai": "5.2.3",
"@types/debug": "4.1.13",
"@types/du": "1.0.3",
"@types/express": "5.0.6",
"@types/extend": "3.0.4",
"@types/js-yaml": "4.0.9",
"@types/lodash": "4.17.24",
"@types/luxon": "3.7.1",
"@types/memory-cache": "0.2.6",
"@types/mocha": "10.0.10",
"@types/morgan": "1.9.10",
"@types/node": "25.5.2",
"@types/node-uuid": "0.0.32",
"@types/parse-github-url": "1.0.3",
"@types/semver": "7.7.1",
"@types/sinon": "21.0.1",
"@types/tmp": "0.2.6",
"@types/xml2js": "0.4.14",
"chai": "6.2.2",
"chai-as-promised": "8.0.2",
"chai-spies": "1.1.0",
"mocha": "11.7.5",
"mockttp": "4.3.0",
"nyc": "18.0.0",
"proxyquire": "2.1.3",
"sinon": "21.0.3",
"typescript": "6.0.2"
},
"overrides": {
"lzma-native": "8.0.6"
}
}