-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.49 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
{
"name": "jexl-extended",
"version": "1.1.8",
"description": "Extended grammar for Javascript Expression Language (JEXL)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"readme": "README.md",
"engines": {
"node": ">= 16.0.0"
},
"scripts": {
"test": "vitest",
"build": "tsc -p tsconfig.release.json",
"docs": "typedoc && ts-node ./docs.ts"
},
"keywords": [
"JSON",
"expression",
"evaluator",
"parser",
"target",
"context",
"jexl",
"filter",
"selector"
],
"author": "Niko Raes <niko.raes@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/nikoraes/jexl-extended.git"
},
"homepage": "https://github.com/nikoraes/jexl-extended",
"license": "MIT",
"dependencies": {
"date-fns": "^3.6.0",
"jexl": "^2.3.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"@types/jexl": "^2.3.4",
"@types/node": "^20.14.9",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"eslint": "^9.5.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-promise": "^6.2.0",
"globals": "^15.6.0",
"typedoc": "^0.26.3",
"typedoc-plugin-markdown": "^4.1.0",
"typescript": "^5.5.2",
"typescript-eslint": "^7.14.1",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
}
}