-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.2 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
{
"name": "wiktionary-scraper",
"description": "A lightweight scraper to fetch information about words in various languages from Wiktionary.",
"license": "MIT",
"version": "0.0.2",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"keywords": [
"javascript",
"typescript",
"parser",
"scraper",
"wiktionary",
"definitions",
"words",
"language",
"dictionary",
"english",
"german",
"polish"
],
"homepage": "https://github.com/vxern/wiktionary-scraper",
"bugs": {
"url": "https://github.com/vxern/wiktionary-scraper/issues",
"email": "[email protected]"
},
"contributors": [
{
"name": "Dorian \"vxern\" Oszczęda",
"email": "[email protected]",
"url": "https://github.com/vxern"
}
],
"repository": {
"type": "git",
"url": "https://github.com/vxern/wiktionary-scraper"
},
"scripts": {
"build": "tsc",
"test": "mocha --no-warnings",
"publish": "tsc && npm publish"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12"
},
"devDependencies": {
"@biomejs/biome": "1.2.2",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}