-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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
{
"name": "savesrc",
"description": "savesrc is a command-line tool that dynamically fetches and saves various resources (like HTML documents, JavaScript files, CSS stylesheets, and images) from a specified webpage.",
"author": "Debanshu Panigrahi",
"version": "1.0.1",
"main": "./src/main/main.js",
"bin": {
"savesrc": "src/main/main.js"
},
"repository": {
"type": "git",
"url": "https://github.com/debanshup/savesrc.git"
},
"bugs": {
"url": "https://github.com/debanshup/savesrc/issues"
},
"homepage": "https://github.com/debanshup/savesrc",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"build": "babel src --out-dir lib",
"lint": "eslint ./src"
},
"license": "ISC",
"keywords": [
"command-line",
"tool",
"fetch",
"save",
"resources",
"HTML",
"JavaScript",
"CSS",
"puppeteer"
],
"type": "commonjs",
"dependencies": {
"commander": "^12.1.0",
"prettier": "^3.3.3",
"puppeteer": "^23.2.1"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"babel-jest": "^29.7.0",
"eslint": "^9.9.1",
"globals": "^15.9.0",
"jest": "^29.7.0",
"jest-html-reporter": "^3.10.2"
}
}