-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.21 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
{
"scripts": {
"start": "npm run build && node dist/mercator.js",
"build": "prettier --write ./src/**/* && tsc",
"test": "npm run build && jest",
"prepublish": "npm run build"
},
"dependencies": {
"@postlight/parser": "^2.2.3",
"@types/heap": "^0.2.28",
"@types/node": "^16.11.12",
"entities": "^2.2.0",
"got": "^11.8.1",
"heap": "^0.2.6",
"htmlmetaparser": "^2.1.1",
"htmlparser2": "^6.0.0",
"schema-dts": "^0.8.2",
"stream-mmmagic": "^2.3.0",
"typescript": "^4.4.4"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.2",
"babel-jest": "^27.3.1",
"jest": "^29.5.0",
"prettier": "2.5.1",
"ts-node": "^10.4.0"
},
"name": "mercator-crawler",
"version": "1.2.0",
"types": "./dist/mercator.d.ts",
"description": "A Mercator crawler with url-frontier, url-set, meta-data fetcher, etc. inspired by the Stanford Information Retrieval book",
"main": "./dist/mercator.js",
"repository": "[email protected]:johnsonjo4531/mercator-crawler.git",
"author": "John Johnson II <[email protected]>",
"license": "MIT",
"private": false
}