-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.64 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.64 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
{
"name": "hotfetch",
"scope": "@toctive-com",
"version": "2.1.9",
"description": "Scrape pages and extract data in ease",
"main": "lib/index.js",
"type": "module",
"scripts": {
"test": "jest",
"test:watch": "jest --coverage --watchAll --maxWorkers=1",
"start": "node ./lib/index.js",
"dev": "nodemon ./lib/index.js",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"lint": "eslint \"**/*.{ts,tsx,js,jsx,cjs,mjs}\"",
"lint:fix": "eslint \"**/*.{ts,tsx,js,jsx,cjs,mjs}\" --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toctive-com/hotfetch.git"
},
"keywords": [
"scrape",
"fetch",
"crawler",
"parser",
"web",
"dom"
],
"author": "toctive-com",
"license": "MIT",
"bugs": {
"url": "https://github.com/toctive-com/hotfetch/issues"
},
"homepage": "https://github.com/toctive-com/hotfetch#readme",
"devDependencies": {
"@babel/core": "^7.17.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@jest/globals": "^27.5.1",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"babel-jest": "^27.5.1",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^26.1.1",
"http-terminator": "^3.2.0",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"dependencies": {
"axios": "^0.26.1",
"cheerio": "^1.0.0-rc.10"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}