-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.37 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
{
"name": "wpdl",
"version": "2.0.2",
"description": "Scrape data from a WordPress instance.",
"keywords": [
"wordpress",
"crawler",
"scraper",
"downloader",
"scraping"
],
"author": "Joonas Tiala <[email protected]>",
"license": "MIT",
"main": "./dist/wpdl.js",
"type": "module",
"bin": "./dist/wpdl.js",
"files": [
"dist",
"CHANGELOG.md"
],
"scripts": {
"build": "rollup --config",
"scrape": "node ./dist/wpdl.js",
"help": "node ./dist/wpdl.js --help",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint --fix \"src/**/*.ts\"",
"format": "prettier --write \"**/*.{ts,js,json,md,yml,yaml}\"",
"clean": "rimraf data dist"
},
"dependencies": {
"chalk": "5.3.0",
"jsdom": "22.1.0",
"mime-types": "2.1.35",
"prettier": "3.0.3",
"yargs": "17.7.2"
},
"devDependencies": {
"@rollup/plugin-typescript": "11.1.3",
"@types/jsdom": "^21.1.2",
"@types/mime-types": "^2.1.1",
"@types/node": "20.5.7",
"@types/yargs": "17.0.24",
"@typescript-eslint/eslint-plugin": "6.5.0",
"@typescript-eslint/parser": "6.5.0",
"eslint": "8.48.0",
"eslint-config-prettier": "9.0.0",
"rimraf": "5.0.1",
"rollup": "3.28.1",
"rollup-plugin-add-shebang": "0.3.1",
"rollup-plugin-executable-output": "1.3.0",
"tslib": "2.6.2",
"typescript": "5.2.2"
}
}