-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.47 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.47 KB
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
48
49
50
51
52
53
54
55
56
{
"name": "@mythicmc/auth",
"version": "1.0.2",
"description": "Node.js client for MythicAuthService.",
"repository": {
"type": "git",
"url": "git+https://github.com/mythicmc/auth-nodejs.git"
},
"author": "retrixe",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mythicmc/auth-nodejs/issues"
},
"homepage": "https://github.com/mythicmc/auth-nodejs#readme",
"packageManager": "yarn@4.0.1",
"type": "module",
"engines": {
"node": ">=18"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": "./lib/index.js",
"./standalone.js": "./lib/standalone.js"
},
"bin": {
"dummy-service": "./lib/dummy-service.js"
},
"scripts": {
"test": "echo FIXME: No tests!",
"lint": "eslint . && tsc --noEmit",
"build": "tsc",
"prepublish": "yarn build"
},
"dependencies": {
"argon2": "^0.31.2",
"ioredis": "^5.3.2",
"mariadb": "^3.2.2",
"sql-template-tag": "^5.1.0"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/node": "^18.18.8",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}