-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "authentic-server",
"version": "5.0.0",
"description": "This is the server component of Authentic. This provides endpoints for signup, login, confirm, and password change.",
"main": "index.js",
"scripts": {
"start": "node example/index.js",
"test": "node test/index.js && standard"
},
"keywords": [
"authentic",
"authentication",
"jwt"
],
"author": "David Guttman <[email protected]> (http://davidguttman.com/)",
"license": "MIT",
"dependencies": {
"@dguttman/node-url": "^0.11.3",
"body": "^5.1.0",
"corsify": "^2.1.0",
"dg-level-userdb": "^2.0.0",
"google-auth-library": "^9.11.0",
"http-hash-router": "^1.1.0",
"jsonwebtoken": "^5.4.1",
"level": "^8.0.1"
},
"devDependencies": {
"bl": "^1.0.0",
"dg-servertest": "^1.2.2",
"dotenv": "^16.4.5",
"memory-level": "^1.0.0",
"standard": "^17.1.0",
"tape": "^4.2.2"
},
"directories": {
"example": "example",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidguttman/authentic-server.git"
},
"bugs": {
"url": "https://github.com/davidguttman/authentic-server/issues"
},
"homepage": "https://github.com/davidguttman/authentic-server#readme"
}