-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 854 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
{
"name": "webfreeze",
"version": "1.0.0",
"description": "A tool to capture and serve static versions of dynamic web pages",
"main": "webfreeze.js",
"scripts": {
"start": "node webfreeze.js",
"lint": "eslint .",
"test": "echo \"No tests specified\" && exit 0",
"format": "prettier --write ."
},
"keywords": [
"web",
"capture",
"freeze",
"static",
"puppeteer",
"archiving"
],
"author": "Pudochu",
"license": "MIT",
"dependencies": {
"puppeteer": "^20.7.3"
},
"devDependencies": {
"eslint": "^8.44.0"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/pudochu/webfreeze.git"
},
"bugs": {
"url": "https://github.com/pudochu/webfreeze/issues"
},
"homepage": "https://github.com/pudochu/webfreeze#readme"
}