Brendan Abolivier hace 8 años
padre
commit
3492074938
Firmado por: Brendan Abolivier <contact@brendanabolivier.com> ID clave GPG: 8EF1500759F70623
Se han modificado 2 ficheros con 28 adiciones y 0 borrados
  1. 1
    0
      auth/.gitignore
  2. 27
    0
      auth/package.json

+ 1
- 0
auth/.gitignore Ver fichero

@@ -0,0 +1 @@
1
+node_modules

+ 27
- 0
auth/package.json Ver fichero

@@ -0,0 +1,27 @@
1
+{
2
+  "name": "das",
3
+  "version": "0.1.0",
4
+  "description": "PoC of school digital workspace without a CAS, using Macaroons (authentication server)",
5
+  "contributors": [
6
+    {
7
+      "name": "Brendan Abolivier",
8
+      "email": "oss@brendanabolivier.com"
9
+    }
10
+  ],
11
+  "repository": {
12
+    "type": "git",
13
+    "url": "git+https://github.com/babolivier/das.git"
14
+  },
15
+  "scripts": {
16
+    "start": "node --use_strict server.js"
17
+  },
18
+  "dependencies": {
19
+    "body-parser": "^1.15.2",
20
+    "express": "^4.14.0",
21
+    "macaroons.js": "^0.3.6"
22
+  },
23
+  "license": {
24
+    "type": "GPL-3.0",
25
+    "url": "https://www.gnu.org/licenses/gpl-3.0-standalone.html"
26
+  }
27
+}