Initial release
[websub-hub] / package.json
diff --git a/package.json b/package.json
new file mode 100644 (file)
index 0000000..3be524d
--- /dev/null
@@ -0,0 +1,55 @@
+{
+  "name": "websub-hub",
+  "version": "1.0.0",
+  "description": "A WebSub Hub server implementation.",
+  "main": "server.js",
+  "scripts": {
+    "coverage": "nyc npm test",
+    "coverage-check": "nyc check-coverage",
+    "eslint": "eslint *.js src",
+    "test": "mocha --recursive"
+  },
+  "repository": {
+    "type": "git",
+    "url": "https://git.squeep.com/websub-hub/"
+  },
+  "keywords": [
+    "WebSub",
+    "Hub",
+    "REC-websub-20180123",
+    "IndieWeb",
+    "PubSubHubBub",
+    "syndication"
+  ],
+  "engines": {
+    "node": ">=12.9"
+  },
+  "author": "Justin Wind <jwind-websubhub@squeep.com>",
+  "license": "ISC",
+  "pre-commit": [
+    "eslint",
+    "coverage",
+    "coverage-check"
+  ],
+  "dependencies": {
+    "@squeep/api-dingus": "git+https://git.squeep.com/squeep-api-dingus/#v1.0.0",
+    "@squeep/web-linking": "git+https://git.squeep.com/squeep-web-linking/#v1.0.0",
+    "argon2": "^0.28.2",
+    "axios": "^0.21.1",
+    "better-sqlite3": "^7.4.3",
+    "feedparser": "^2.2.10",
+    "htmlparser2": "^6.1.0",
+    "pg-promise": "^10.11.0"
+  },
+  "devDependencies": {
+    "eslint": "^7.32.0",
+    "eslint-plugin-node": "^11.1.0",
+    "eslint-plugin-security": "^1.4.0",
+    "eslint-plugin-sonarjs": "^0.9.1",
+    "mocha": "^9.0.3",
+    "mocha-steps": "^1.3.0",
+    "nyc": "^15.1.0",
+    "pre-commit": "^1.2.2",
+    "sinon": "^11.1.2"
+  }
+}