Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MR414N-ID
GitHub Repository: MR414N-ID/botku2
Path: blob/master/node_modules/@bochilteam/scraper/package.json
1105 views
1
{
2
"name": "@bochilteam/scraper",
3
"version": "2.0.0",
4
"description": "scraper module",
5
"exports": {
6
".": {
7
"types": "./lib/@types/index.d.ts",
8
"import": "./lib/esm/index.js",
9
"require": "./lib/cjs/index.js"
10
}
11
},
12
"main": "./lib/cjs/index.js",
13
"types": "./lib/@types/index.d.ts",
14
"engines": {
15
"node": ">= 12.20"
16
},
17
"scripts": {
18
"test": "npm run build && npm run test:cjs && npm run test:esm",
19
"test:cjs": "mocha --timeout 20000 ./lib/cjs/**/test.js",
20
"test:esm": "mocha --timeout 20000 ./lib/esm/**/test.js",
21
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:types && node scripts/write-package.js",
22
"build:cjs": "tsc --p src/tsconfig.cjs.json",
23
"build:esm": "tsc --p src/tsconfig.esm.json",
24
"build:types": "tsc --p tsconfig.types.json",
25
"lint:fix": "npx eslint src/** --fix --ignore-pattern src/*.json",
26
"clean": "rimraf ./lib",
27
"prepare": "node scripts/compile-typescript.js"
28
},
29
"repository": {
30
"type": "git",
31
"url": "git+https://github.com/BochilTeam/scraper.git"
32
},
33
"author": "BochilTeam",
34
"license": "GPL-3.0-or-later",
35
"bugs": {
36
"url": "https://github.com/BochilTeam/scraper/issues"
37
},
38
"homepage": "https://github.com/BochilTeam/scraper#readme",
39
"devDependencies": {
40
"@types/chai": "^4.3.0",
41
"@types/mocha": "^9.1.0",
42
"@types/node": "^17.0.9",
43
"@types/ws": "^8.2.2",
44
"@typescript-eslint/eslint-plugin": "^5.13.0",
45
"@typescript-eslint/parser": "^5.13.0",
46
"@zoltu/typescript-transformer-append-js-extension": "^1.0.1",
47
"chai": "^4.3.6",
48
"eslint": "^7.32.0",
49
"eslint-config-standard": "^16.0.3",
50
"eslint-plugin-import": "^2.25.4",
51
"eslint-plugin-node": "^11.1.0",
52
"eslint-plugin-promise": "^5.0.0",
53
"mocha": "^9.2.0",
54
"typescript": "^4.5.5"
55
},
56
"dependencies": {
57
"cheerio": "^1.0.0-rc.10",
58
"form-data": "^4.0.0",
59
"got": "^11.8.3",
60
"human-readable": "^0.2.1"
61
},
62
"directories": {
63
"lib": "lib",
64
"src": "src",
65
"scripts": "scripts"
66
},
67
"files": [
68
"lib/*",
69
"scripts/*"
70
],
71
"optionalDependencies": {
72
"ws": "^8.4.2"
73
}
74
}
75
76