-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
63 lines (63 loc) · 1.54 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
{
"name": "cel-js",
"version": "0.3.0",
"description": "Common Expression Language (CEL) evaluator for JavaScript",
"keywords": [
"Common Expression Language",
"CEL",
"evaluator",
"javascript",
"typescript"
],
"homepage": "https://github.com/ChromeGG/cel-js",
"repository": {
"type": "git",
"url": "git+https://github.com/ChromeGG/cel-js.git"
},
"license": "MIT",
"author": "Adam Tkaczyk",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "pnpm run clean && tsc",
"clean": "rm -rf ./dist",
"generate": "tsx ./ts-signatures-generator",
"lint": "eslint --ext .ts src",
"prepack": "pnpm run build",
"test": "vitest ./src --run",
"test:watch": "vitest ./src",
"type-check": "tsc --noEmit -p tsconfig.json",
"release": "release-it"
},
"dependencies": {
"chevrotain": "11.0.3",
"ramda": "0.30.0"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@types/node": "20.12.11",
"@types/ramda": "0.30.0",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"esbuild": "0.21.1",
"eslint": "8.53.0",
"eslint-plugin-sonarjs": "0.25.1",
"eslint-plugin-vitest": "0.4.1",
"prettier": "3.4.2",
"release-it": "17.2.1",
"tsx": "4.9.4",
"typescript": "5.4.5",
"vitest": "1.6.0"
},
"engines": {
"node": ">=18.0.0"
}
}