-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.04 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
{
"name": "@florajs/ql",
"version": "6.0.0",
"description": "Query Language with parser, tests, syntax generators, etc. for flora, alerting server, webpush",
"main": "index.js",
"scripts": {
"pretest": "npm run lint",
"test": "node --test",
"lint": "eslint ."
},
"files": [
"index.js",
"lib/",
"beautify/",
"clearSquare/",
"config/",
"error/",
"operators/",
"simplify/",
"tokenizer/",
"validate/"
],
"pre-commit": "test",
"repository": "florajs/ql",
"homepage": "https://github.com/florajs/ql",
"keywords": [
"florajs",
"query",
"language",
"parser",
"api"
],
"author": {
"name": "stock3 AG",
"email": "it@stock3.com"
},
"contributors": [
{
"name": "Thomas Lukacs"
}
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"devDependencies": {
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"pre-commit": "^1.2.2",
"prettier": "^3.3.3"
}
}