add a screenshot to readme
[websub-hub] / package.json
1 {
2 "name": "@squeep/websub-hub",
3 "version": "1.3.3",
4 "description": "A WebSub Hub server implementation.",
5 "main": "server.js",
6 "scripts": {
7 "coverage": "nyc npm test",
8 "coverage-check": "nyc check-coverage",
9 "eslint": "eslint *.js src",
10 "test": "mocha --recursive"
11 },
12 "repository": {
13 "type": "git",
14 "url": "https://git.squeep.com/websub-hub/"
15 },
16 "keywords": [
17 "WebSub",
18 "Hub",
19 "REC-websub-20180123",
20 "IndieWeb",
21 "PubSubHubBub",
22 "syndication"
23 ],
24 "engines": {
25 "node": ">=12.9"
26 },
27 "author": "Justin Wind <jwind-websubhub@squeep.com>",
28 "license": "ISC",
29 "pre-commit": [
30 "eslint",
31 "coverage",
32 "coverage-check"
33 ],
34 "dependencies": {
35 "@squeep/api-dingus": "git+https://git.squeep.com/squeep-api-dingus/#v1.2.3",
36 "@squeep/authentication-module": "git+https://git.squeep.com/squeep-authentication-module/#v1.1.1",
37 "@squeep/html-template-helper": "git+https://git.squeep.com/squeep-html-template-helper#v1.0.2",
38 "@squeep/indieauth-helper": "git+https://git.squeep.com/squeep-indieauth-helper/#v1.0.1",
39 "@squeep/web-linking": "git+https://git.squeep.com/squeep-web-linking/#v1.0.2",
40 "axios": "^0.24.0",
41 "feedparser": "^2.2.10",
42 "htmlparser2": "^7.2.0",
43 "iconv": "^3.0.1"
44 },
45 "optionalDependencies": {
46 "better-sqlite3": "^7.4.6",
47 "pg-promise": "^10.11.1"
48 },
49 "devDependencies": {
50 "eslint": "^8.6.0",
51 "eslint-plugin-node": "^11.1.0",
52 "eslint-plugin-security": "^1.4.0",
53 "eslint-plugin-sonarjs": "^0.11.0",
54 "html-minifier-lint": "^2.0.0",
55 "mocha": "^9.1.4",
56 "mocha-steps": "^1.3.0",
57 "nyc": "^15.1.0",
58 "pre-commit": "^1.2.2",
59 "sinon": "^12.0.1"
60 }
61 }