This repository was archived by the owner on Aug 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.47 KB
/
package.json
File metadata and controls
59 lines (59 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
57
58
59
{
"name": "@logux/backend-test",
"version": "4.0.16",
"description": "Test Logux Back-end Protocol implementation",
"keywords": [
"logux",
"server",
"test"
],
"scripts": {
"test:lint": "eslint .",
"test:local": "./bin.js local",
"test": "pnpm run /^test:/"
},
"author": "Andrey Sitnik <andrey@sitnik.ru>",
"license": "MIT",
"homepage": "https://logux.org/",
"repository": "logux/backend-test",
"type": "module",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"engines": {
"node": "^14.0.0 || ^16.0.0 || >=18.0.0"
},
"bin": "./bin.js",
"dependencies": {
"@logux/core": "^0.8.4",
"@logux/server": "^0.12.4",
"nanospinner": "^1.1.0",
"picocolors": "^1.0.0"
},
"devDependencies": {
"@logux/eslint-config": "^51.0.1",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"clean-publish": "^4.2.0",
"eslint": "^8.46.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-perfectionist": "^1.5.1",
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-promise": "^6.1.1",
"typescript": "^5.1.6"
},
"prettier": {
"arrowParens": "avoid",
"jsxSingleQuote": false,
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"eslintConfig": {
"extends": "@logux/eslint-config/esm"
}
}