-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.6 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
{
"name": "@marcbachmann/cel-js",
"version": "0.0.0-placeholder",
"description": "A lightweight Common Expression Language (CEL) implementation in JavaScript with zero dependencies",
"keywords": [
"cel",
"common expression language",
"expression",
"language",
"parser",
"evaluator"
],
"homepage": "https://github.com/marcbachmann/cel-js#readme",
"bugs": {
"url": "https://github.com/marcbachmann/cel-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcbachmann/cel-js.git"
},
"license": "MIT",
"author": "Marc Bachmann",
"type": "module",
"bin": {"cel-evaluate": "./bin/cel-evaluate.js"},
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./evaluator": {
"types": "./lib/evaluator.d.ts",
"default": "./lib/evaluator.js"
},
"./serialize": {
"types": "./lib/serialize.d.ts",
"default": "./lib/serialize.js"
}
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"bin/*",
"lib/*",
"LICENSE",
"README.md"
],
"scripts": {
"test": "node --test test/**/*.test.js",
"test:watch": "node --test --watch test/**/*.test.js",
"examples": "node examples.js",
"benchmark": "node --expose-gc --allow-natives-syntax benchmark/index.js"
},
"devDependencies": {
"eslint-config-prettier": "^10.1.5",
"globals": "^17.0.0"
},
"engines": {
"node": ">=20.19.0"
},
"release": {
"extends": "@livingdocs/semantic-release-presets/npm-github-verify",
"branches": [
"main"
]
}
}