a16ad0e3a4997e3f76590c21ea11cc3e66e12c2a
[websub-hub] / package.json
1 {
2 "name": "websub-hub",
3 "version": "1.2.0",
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.1.0",
36 "@squeep/web-linking": "git+https://git.squeep.com/squeep-web-linking/#v1.0.0",
37 "argon2": "^0.28.2",
38 "axios": "^0.21.1",
39 "better-sqlite3": "^7.4.3",
40 "feedparser": "^2.2.10",
41 "htmlparser2": "^7.0.0",
42 "iconv": "^3.0.0",
43 "pg-promise": "^10.11.0"
44 },
45 "devDependencies": {
46 "eslint": "^7.32.0",
47 "eslint-plugin-node": "^11.1.0",
48 "eslint-plugin-security": "^1.4.0",
49 "eslint-plugin-sonarjs": "^0.10.0",
50 "mocha": "^9.1.0",
51 "mocha-steps": "^1.3.0",
52 "nyc": "^15.1.0",
53 "pre-commit": "^1.2.2",
54 "sinon": "^11.1.2"
55 }
56 }