-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.13 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
{
"displayName": "Scraper",
"name": "@disqada/scraper",
"version": "2.0.3",
"description": "Very simple and easy to use web scraper",
"scripts": {
"format": "prettier . --write --ignore-path .gitignore",
"test": "mocha ./test/**/*.test.js"
},
"type": "module",
"bin": "./bin/download.js",
"main": "./src/exports.js",
"types": "./types/exports.d.ts",
"exports": {
".": {
"import": "./src/exports.js",
"default": "./src/exports.js",
"types": "./types/exports.d.ts"
}
},
"files": [
"bin",
"src",
"types",
"LICENSE",
"*.md"
],
"homepage": "https://disqada.github.io/Scraper",
"repository": "github:DisQada/Scraper",
"bugs": {
"url": "https://github.com/DisQada/Scraper/issues"
},
"keywords": [
"web",
"scrape",
"scraper",
"selector",
"search",
"web scraper"
],
"author": "DisQada <hi@disqada.org> (https://links.disqada.org)",
"contributors": [],
"license": "Apache-2.0",
"devDependencies": {
"@disqada/workspace": "^1.6.2",
"mocha": "^10.7.3",
"prettier": "^3.3.3"
},
"dependencies": {
"himalaya": "^1.1.0"
}
}