-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.89 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.89 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"version": "1.0.0-beta.0",
"type": "commonjs",
"author": "Vlad Seryakov",
"name": "backendjs",
"description": "A library for building backends",
"main": "lib/index",
"homepage": "https://github.com/vseryakov/backendjs",
"repository": {
"type": "git",
"url": "https://github.com/vseryakov/backendjs.git"
},
"dependencies": {
"express": "5.2.1",
"fast-xml-parser": "5.7.1"
},
"peerDependencies": {
"croner": "10.0.1",
"formidable": "3.5.4",
"nodemailer": "8.0.5",
"nats": "2.29.3",
"pg": "8.20.0",
"redis": "3.1.2",
"sharp": "0.34.5",
"unix-dgram": "2.0.7",
"web-push": "3.6.7",
"ws": "8.20.0",
"@parse/node-apn": "8.0.0"
},
"peerDependenciesMeta": {
"croner": { "optional": true },
"formidable": { "optional": true },
"nodemailer": { "optional": true },
"nats": { "optional": true },
"pg": { "optional": true },
"redis": { "optional": true },
"sharp": { "optional": true },
"unix-dgram": { "optional": true },
"web-push": { "optional": true },
"ws": { "optional": true },
"@parse/node-apn": { "optional": true }
},
"keywords": [
"webservice",
"websockets",
"aws",
"database",
"API",
"DynamoDB",
"Sqlite",
"Elasticsearch",
"PostgreSQL",
"NATS",
"Redis",
"pubsub",
"jobs",
"cron"
],
"engines": {
"node": ">=22.0"
},
"license": "BSD-3-Clause",
"bin": {
"bkjs": "./bin/bkjs",
"bksh": "./bin/bkjs"
},
"files": [
"LICENSE",
"bin",
"lib/",
"web/",
"tools/"
],
"scripts": {
"build": "npm run docs",
"devbuild": "npm run build",
"node": "./bkjs install-node",
"deps": "PATH=$(pwd)/nodejs/bin:$PATH npm install",
"test": "node --test tests/**/*.test.js tests/**/*-test.js",
"docs": "rm -rf docs/web && bksh -help-config > docs/src/config.md && jsdoc -c docs/jsdoc.js"
}
}