Merge branch 'v1.3-dev' as v1.3.11
[websub-hub] / package.json
1 {
2 "name": "@squeep/websub-hub",
3 "version": "1.3.10",
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": ">=14"
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.9",
36 "@squeep/authentication-module": "git+https://git.squeep.com/squeep-authentication-module/#v1.2.12",
37 "@squeep/html-template-helper": "git+https://git.squeep.com/squeep-html-template-helper#v1.4.0",
38 "@squeep/logger-json-console": "git+https://git.squeep.com/squeep-logger-json-console#v1.0.2",
39 "@squeep/web-linking": "^1.0.7",
40 "axios": "^1.1.3",
41 "feedparser": "^2.2.10",
42 "htmlparser2": "^8.0.1",
43 "iconv": "^3.0.1"
44 },
45 "optionalDependencies": {
46 "better-sqlite3": "^7.6.2",
47 "pg-promise": "^10.12.1"
48 },
49 "devDependencies": {
50 "eslint": "^8.26.0",
51 "eslint-plugin-node": "^11.1.0",
52 "eslint-plugin-promise": "^6.1.1",
53 "eslint-plugin-security": "^1.5.0",
54 "eslint-plugin-sonarjs": "^0.16.0",
55 "html-minifier-lint": "^2.0.0",
56 "mocha": "^10.1.0",
57 "mocha-steps": "^1.3.0",
58 "nyc": "^15.1.0",
59 "pre-commit": "^1.2.2",
60 "sinon": "^14.0.1"
61 }
62 }