forked from viasite/site-audit-seo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.72 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
{
"name": "site-audit-seo",
"version": "6.0.0",
"description": "Web service and CLI tool for SEO site audit: crawl site, lighthouse all pages, view public reports in browser. Also output to console, json, csv.",
"main": "src/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/viasite/site-audit-seo.git"
},
"scripts": {
"start": "node src/index.js",
"server": "node src/server.js",
"version": "npm run changelog && git add CHANGELOG.md",
"postversion": "git push && npm run release",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"changelog-test": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 --config changelog-config.js",
"release": "conventional-github-releaser -p angular && npm publish && npm run deploy",
"deploy": "test -e data/deploy.sh && bash data/deploy.sh || echo no deploy script",
"postinstall-puppeteer-fix": "sudo chown -R $USER:$USER \"$(npm prefix -g)/lib/node_modules/site-audit-seo/node_modules/puppeteer/.local-chromium/\""
},
"bin": {
"site-audit-seo": "./src/index.js"
},
"author": "Stanislav Popov",
"license": "ISC",
"dependencies": {
"@popstas/headless-chrome-crawler": "^1.8.4",
"axios": "^1.6.8",
"body-parser": "^1.19.0",
"chrome-launcher": "^1.1.0",
"commander": "^5.0.0",
"csvtojson": "^2.0.10",
"expand-home-dir": "0.0.3",
"express": "^4.19.2",
"influx": "^5.6.3",
"lighthouse": "^11.6.0",
"lodash": "^4.17.21",
"lowdb": "^7.0.1",
"queue": "^6.0.1",
"sanitize-filename": "^1.6.3",
"socket.io": "^4.7.4"
},
"keywords": [
"audit",
"crawler",
"scraper",
"puppeteer",
"seo",
"cli"
]
}