forked from metarhia/impress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.02 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "impress",
"version": "3.0.14",
"author": "Timur Shemsedinov <timur.shemsedinov@gmail.com>",
"description": "Enterprise application server for Node.js",
"license": "MIT",
"keywords": [
"application",
"server",
"isolation",
"enterprise",
"security",
"lightweight",
"scalable",
"api",
"rpc",
"soa",
"service",
"stateful",
"rest",
"restful",
"web",
"framework",
"router",
"routing",
"cluster",
"private",
"cloud",
"http",
"https",
"websocket",
"websockets",
"interactive",
"app",
"backend",
"fullstack"
],
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/metarhia/impress.git"
},
"bugs": {
"url": "https://github.com/metarhia/impress/issues",
"email": "timur.shemsedinov@gmail.com"
},
"homepage": "https://metarhia.com",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/tshemsedinov"
},
"main": "impress.js",
"types": "types/impress.d.ts",
"files": [
"lib/",
"schemas/",
"types/"
],
"scripts": {
"test": "npm run lint && npm run types && metatests test/",
"types": "tsc -p types/tsconfig.json",
"lint": "eslint . && prettier -c \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.ts\"",
"fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.ts\""
},
"engines": {
"node": "^18.15 || 20 || 21 || 22"
},
"dependencies": {
"metacom": "turone/metacom",
"metaconfiguration": "^3.0.0",
"metalog": "^3.1.14",
"metaschema": "^2.1.5",
"metautil": "^5.2.1",
"metavm": "^1.4.1",
"metawatch": "^1.2.1"
},
"devDependencies": {
"@types/node": "^20.11.17",
"@types/ws": "^8.5.10",
"eslint": "^8.56.0",
"eslint-config-metarhia": "^8.2.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"metatests": "^0.8.2",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
}
}