-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.19 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
{
"name": "webcrawler",
"version": "0.0.1",
"description": "Webcrawler CLI",
"main": "index.js",
"author": "Guy Hed",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "npm config set strict-ssl false && node ./dist/index.js",
"test": "jest --config jest.config.json --no-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guyhed/webcrawler.git"
},
"devDependencies": {
"@types/got": "9.6.12",
"@types/jest": "29.1.2",
"@types/jsdom": "20.0.1",
"@types/lodash": "4.14.191",
"@types/node": "18.8.5",
"@typescript-eslint/eslint-plugin": "5.40.0",
"@typescript-eslint/parser": "5.40.0",
"commander": "9.4.1",
"eslint": "8.25.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.1",
"eslint-plugin-markdown": "3.0.0",
"jest": "29.2.0",
"lodash": "4.17.21",
"ts-jest": "29.0.3",
"typescript": "4.8.4"
},
"dependencies": {
"commander": "9.4.1",
"got": "12.5.3",
"jsdom": "20.0.3"
},
"bugs": {
"url": "https://github.com/guyhed/webcrawler/issues"
},
"homepage": "https://github.com/guyhed/webcrawler#readme"
}