forked from clearlydefined/crawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.9 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
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
{
"name": "clearlydefined-crawler",
"version": "2.0.1",
"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\"",
"local": "node --inspect-brk=0.0.0.0:9229 ./index.js",
"integration": "mocha \"test/integration/**/*.js\" --timeout 20000",
"lint": "npm run prettier:check && npm run eslint",
"lint:fix": "npm run prettier:write && npm run eslint:fix",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"prettier:check": "prettier . --check",
"prettier:write": "prettier . --write",
"postinstall": "patch-package"
},
"keywords": [
"license",
"api",
"crawler",
"clearlydefined"
],
"author": "Jeff McAffer <[email protected]>",
"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": {
"@clearlydefined/spdx": "github:clearlydefined/spdx#v0.1.9",
"@microsoft/refreshing-config": "^0.1.3",
"applicationinsights": "^1.5.0",
"ar-async": "^0.1.4",
"axios": "^1.6.0",
"axios-retry": "^3.2.5",
"azure-storage": "^2.10.3",
"body-parser": "^1.19.0",
"debug": "^4.3.4",
"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.19.2",
"express-init": "^1.1.1",
"extend": "^3.0.1",
"extract-zip": "^1.6.8",
"geit": "0.0.7",
"ghrequestor": "^0.1.7",
"htmlencode": "0.0.4",
"js-yaml": "^3.13.1",
"linebyline": "^1.3.0",
"lodash": "^4.17.21",
"luxon": "^2.5.2",
"memory-cache": "^0.2.0",
"mkdirp": "^0.5.1",
"morgan": "^1.9.0",
"node-html-parser": "^5.3.3",
"node-uuid": "^1.4.8",
"painless-config": "^0.1.2",
"parse-github-url": "^1.0.2",
"patch-package": "^6.5.1",
"qlimit": "^0.1.1",
"requestretry": "^4.0.0",
"semver": "^7.6.0",
"sha.js": "^2.4.11",
"spdx-correct": "^3.2.0",
"throat": "^5.0.0",
"tmp": "0.1.0",
"unbzip2-stream": "^1.3.3",
"winston": "^2.3.0",
"winston-azure-application-insights": "^1.5.0",
"xml2js": "^0.5.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-spies": "^1.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"mocha": "^8.2.0",
"mockttp": "^3.13.0",
"nyc": "^15.0.0",
"prettier": "3.2.4",
"proxyquire": "^2.1.3",
"request": "^2.88.2",
"sinon": "^5.0.0"
}
}