-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.34 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
{
"name": "node-site-downloader",
"version": "1.3.0",
"description": "An easy to use CLI for downloading websites for offline usage",
"main": "index.js",
"scripts": {
"test-docker": "docker build -t $(./get_image_name.sh) .",
"test-js": "npx jest",
"test": "npm run test-js && npm run test-docker",
"format": "prettier **/*.{js,mjs} --write",
"version-bump": "npm test && npx bump --commit --tag --push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gnir-work/node-site-downloader.git"
},
"keywords": [
"nodejs",
"node",
"site",
"website",
"downloader",
"download",
"offline",
"crawler",
"node-website-scraper"
],
"author": {
"name": "Nir Geller",
"email": "[email protected]"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/gnir-work/node-site-downloader/issues"
},
"homepage": "https://github.com/gnir-work/node-site-downloader#readme",
"dependencies": {
"lodash": "^4.17.13",
"website-scraper": "^4.0.1",
"yargs": "^13.2.4"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/website-scraper": "^1.2.4",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"version-bump-prompt": "^5.0.4"
},
"bin": {
"node-site-downloader": "./index.js"
},
"publishConfig": {
"access": "public"
}
}