-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 923 Bytes
/
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
{
"name": "quizlet-fetcher",
"version": "3.0.0",
"description": "HTML parser for Quizlet flashcards decks",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "node esbuild.config.js",
"test": "node test"
},
"exports": {
".": {
"require": "./dist/index.min.cjs",
"import": "./dist/index.min.mjs"
}
},
"keywords": [
"quizlet",
"scraper",
"flashcards",
"html",
"parser"
],
"author": "aboutdavid",
"license": "LGPL-3.0-or-later",
"dependencies": {
"cheerio": "1.0.0-rc.12"
},
"devDependencies": {
"esbuild": "^0.23.1",
"esbuild-plugin-clean": "^1.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aboutdavid/quizlet-fetcher.git"
},
"bugs": {
"url": "https://github.com/aboutdavid/quizlet-fetcher/issues"
},
"homepage": "https://github.com/aboutdavid/quizlet-fetcher#readme"
}