forked from minhhh/archive-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.14 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "archive-web",
"preferGlobal": true,
"version": "0.1.0",
"author": "Ha.Minh",
"description": "Download a webpage for archiving purpose",
"bin": {
"archive-web": "./lib/index.js"
},
"main": "lib/index.js",
"type": "module",
"scripts": {
"clean": "rm -frv lib",
"test": "npm run clean && npm run compile && node lib/index.js",
"compile": "npx babel -d lib/ src/",
"prepublish": "npm run compile",
"lint": "npx eslint src/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/minhhh/archive-web.git"
},
"dependencies": {
"async": "^3.2.5",
"debug": "4.3.4",
"docopt": "^0.6.2",
"ewait": "^0.2.1",
"extsprintf": "1.4.1",
"fs-extra": "11.2.0",
"moment": "^2.30.1",
"tmp": "0.2.3",
"website-scraper": "^5.3.1"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.24.0",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@babel/preset-env": "^7.24.0",
"@types/node": "^20.11.25",
"eslint": "^8.57.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"vite-node": "^1.3.1",
"yarn": "^1.22.21"
},
"engines": {
"node": ">=8.10.0"
},
"keywords": [
"archive",
"download",
"web",
"webpage"
],
"resolutions": {
"fs-extra": "8.1.0",
"tmp": "0.1.0",
"debug": "4.1.1",
"domutils": "1.5.1",
"readable-stream": "3.4.0",
"string_decoder": "1.2.0",
"safe-buffer": "5.2.0",
"ms": "2.1.2",
"punycode": "1.4.1",
"extsprintf": "1.3.0",
"minimist": "0.0.8",
"glob-parent": "5.0.0",
"is-glob": "4.0.1",
"normalize-path": "3.0.0",
"define-property": "2.0.2",
"extend-shallow": "3.0.2",
"kind-of": "6.0.2",
"is-descriptor": "1.0.2",
"isobject": "3.0.1",
"is-accessor-descriptor": "1.0.0",
"is-data-descriptor": "1.0.0",
"is-extendable": "1.0.1",
"has-value": "1.0.0",
"has-values": "1.0.0",
"semver": "6.2.0",
"string-width": "3.1.0",
"strip-ansi": "5.2.0",
"is-fullwidth-code-point": "2.0.0",
"ansi-regex": "4.1.0",
"strip-json-comments": "3.0.1",
"jsesc": "2.5.2"
}
}