initial commit
[squeep-indie-auther] / package.json
diff --git a/package.json b/package.json
new file mode 100644 (file)
index 0000000..24e8e44
--- /dev/null
@@ -0,0 +1,64 @@
+{
+  "name": "@squeep/indie-auther",
+  "version": "1.0.0",
+  "description": "A stand-alone IndieAuth identity-provider service, for most of your IndieAuth endpoint needs.",
+  "keywords": [
+    "IdP",
+    "Identity Provider",
+    "IndieAuth",
+    "IndieWeb",
+    "OAuth2",
+    "Authentication"
+  ],
+  "main": "server.js",
+  "scripts": {
+    "coverage": "nyc npm test",
+    "coverage-check": "nyc check-coverage",
+    "eslint": "eslint *.js src",
+    "test": "mocha --recursive"
+  },
+  "pre-commit": [
+    "eslint",
+    "coverage",
+    "coverage-check"
+  ],
+  "engines": {
+    "node": ">=14.0"
+  },
+  "repository": {
+    "type": "git",
+    "url": "https://git.squeep.com/squeep-indie-auther/"
+  },
+  "author": "Justin Wind <jwind-indieauther@squeep.com>",
+  "license": "ISC",
+  "dependencies": {
+    "@squeep/amqp-helper": "git+https://git.squeep.com/squeep-amqp-helper#v1.0.0",
+    "@squeep/api-dingus": "git+https://git.squeep.com/squeep-api-dingus/#v1.2.9",
+    "@squeep/authentication-module": "git+https://git.squeep.com/squeep-authentication-module/#v1.2.12",
+    "@squeep/chores": "git+https://git.squeep.com/squeep-chores/#v1.0.0",
+    "@squeep/html-template-helper": "git+https://git.squeep.com/squeep-html-template-helper#v1.4.0",
+    "@squeep/indieauth-helper": "git+https://git.squeep.com/squeep-indieauth-helper/#v1.2.2",
+    "@squeep/logger-json-console": "git+https://git.squeep.com/squeep-logger-json-console#v1.0.2",
+    "@squeep/mystery-box": "^1.2.0",
+    "@squeep/resource-authentication-module": "git+https://git.squeep.com/squeep-resource-authentication-module#v1.0.0",
+    "@squeep/roman": "^1.0.0",
+    "@squeep/web-linking": "^1.0.7",
+    "better-sqlite3": "^8.0.1",
+    "pg-promise": "^10.15.4",
+    "uuid": "^9.0.0"
+  },
+  "devDependencies": {
+    "@squeep/test-helper": "git+https://git.squeep.com/squeep-test-helper#v1.0.0",
+    "eslint": "^8.30.0",
+    "eslint-plugin-node": "^11.1.0",
+    "eslint-plugin-promise": "^6.1.1",
+    "eslint-plugin-security": "^1.5.0",
+    "eslint-plugin-sonarjs": "^0.17.0",
+    "html-minifier-lint": "^2.0.0",
+    "mocha": "^10.2.0",
+    "mocha-steps": "^1.3.0",
+    "nyc": "^15.1.0",
+    "pre-commit": "^1.2.2",
+    "sinon": "^15.0.1"
+  }
+}