-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.05 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
{
"name": "microfrontier",
"version": "1.0.2",
"description": "",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"keywords": [
"Web Crawler",
"Frontier",
"Search Engine",
"URL",
"Redis",
"Queue",
"Spider",
"Robots.txt"
],
"repository": {
"type": "git",
"url": "https://github.com/adileo/MicroFrontier.git"
},
"scripts": {
"test": "jest",
"build": "swc src/ -d dist/ --copy-files",
"start": "npm run build && node ./dist/MicroServer.js",
"prepublishOnly": "npm run build && tsc"
},
"bin": {
"microfrontier": "./bin/index.js"
},
"author": "Adileo Barone",
"license": "GPL-3",
"devDependencies": {
"@swc/cli": "^0.1.51",
"@swc/core": "^1.2.105",
"@types/ioredis": "^4.27.8",
"@types/jest": "^27.0.2",
"ioredis-mock": "^5.6.0",
"jest": "^27.3.1",
"mockdate": "^3.0.5",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"dependencies": {
"ioredis": "^4.28.0",
"micro": "^9.3.4",
"microrouter": "^3.1.3",
"nconf": "^0.11.3"
}
}