-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "scraper-misc",
"version": "0.3.2",
"description": "scraper of websites which do not need a lot of transformation",
"main": "index.js",
"engines": {
"node": ">=12.16.0"
},
"dependencies": {
"@types/crypto-js": "^4.2.2",
"agentkeepalive": "^4.5.0",
"crypto-js": "^4.2.0",
"json5": "^2.2.3",
"mkdirp": "^3.0.1",
"tough-cookie": "^4.1.4",
"urijs": "^1.19.11",
"website-scrap-engine": "^0.7.2"
},
"devDependencies": {
"@types/node": "^22.9.1",
"@types/tough-cookie": "^4.0.5",
"@types/urijs": "^1.19.25",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.1",
"typescript": "^5.0.4"
},
"scripts": {
"lint": "eslint --fix src",
"clean": "rimraf lib/*",
"tsc": "tsc",
"build": "npm run lint && npm run tsc && npm run copy",
"copy": "node copy-src.js",
"prepack": "npm run clean && npm run build",
"postshrinkwrap": "node package-lock-resolved.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/website-local/scraper-misc.git"
},
"keywords": [
"scrape"
],
"author": "myfreeer",
"license": "MPL-2.0"
}