forked from hansputera/brainly-scraper-languages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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
53
54
55
56
57
58
{
"name": "brainly-scraper-v2",
"version": "2.2.8",
"description": "A library that makes it easy to retrieve data from brainly sites.",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"clean": "rimraf build",
"test": "npm run build && node ./build/test.js",
"build": "npm run clean && tsc --build tsconfig.json",
"lint": "eslint \"src/**/*.ts\" --fix",
"prepare": "husky install",
"docs": "typedoc --footerTypedocVersion --footerDate --footerTime --favicon https://i.ibb.co/pyqPrLk/image.png",
"format": "prettier \"src/**/*.ts\" --write"
},
"author": {
"name": "Hanif Dwy Putra S",
"email": "[email protected]",
"url": "https://hdps.my.id"
},
"license": "MIT",
"dependencies": {
"axios": "^1.7.7",
"piscina": "^4.2.1"
},
"devDependencies": {
"@types/node": "^18.19.50",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.10.0",
"husky": "^9.1.5",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typedoc": "latest",
"typedoc-plugin-extras": "^2.3.3",
"typescript": "^4.9.5"
},
"repository": {
"url": "https://github.com/hanifdwyputras/brainly-scraper-v2"
},
"readme": "https://github.com/hanifdwyputras/brainly-scraper-v2/blob/master/README.md",
"maintainers": [
"hansputera",
"hanifdwyputras"
],
"keywords": [
"brainly",
"brainly scrape",
"brainly-scraper",
"brainlys"
],
"engines": {
"node": ">=12.x"
},
"packageManager": "[email protected]"
}