-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.53 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
{
"name": "flora",
"version": "7.0.0",
"description": "FLexible Open Rest API",
"main": "index.js",
"scripts": {
"prepare": "git config --local core.hooksPath .githooks",
"doc": "jsdoc -R README.md -d build/docs lib",
"test": "node --test test/*.spec.js",
"lint": "eslint .",
"test-lint": "eslint . && npm run test"
},
"files": [
"index.js",
"lib/"
],
"keywords": [
"api",
"framework",
"rest",
"florajs"
],
"author": {
"name": "stock3 AG",
"email": "[email protected]"
},
"homepage": "https://github.com/florajs/flora",
"license": "MIT",
"repository": "florajs/flora",
"contributors": [
{
"name": "Mark Plomer",
"email": "[email protected]"
},
{
"name": "Nico Kaiser",
"email": "[email protected]"
},
{
"name": "Marco Baumgartl",
"email": "[email protected]"
}
],
"engines": {
"node": ">=18"
},
"dependencies": {
"@florajs/cluster": "^4.0.0",
"@florajs/errors": "^4.0.0",
"@florajs/request-parser": "^5.0.0",
"@xmldom/xmldom": "^0.9.7",
"bunyan": "^1.8.15",
"chokidar": "^4.0.3",
"content-type": "^1.0.5",
"luxon": "^3.5.0",
"promise-events": "^0.2.4",
"serve-static": "^1.16.2"
},
"devDependencies": {
"abstract-logging": "^2.0.1",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.14.0",
"jsdoc": "^4.0.4",
"mock-fs": "^5.4.1",
"prettier": "^3.4.2"
}
}