-
Notifications
You must be signed in to change notification settings - Fork 511
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.38 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.38 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
{
"name": "json-rules-engine",
"version": "8.0.0-alpha.1",
"description": "Rules Engine expressed in simple json",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "vitest --typecheck",
"lint": "eslint",
"format": "prettier -w .",
"build": "tsup",
"watch": "tsup --watch",
"examples": "./test/support/example_runner.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/cachecontrol/json-rules-engine"
},
"keywords": [
"rules",
"engine",
"rules engine"
],
"publishConfig": {
"tag": "next"
},
"author": "Cache Hamm <cache.hamm@gmail.com>",
"contributors": [
"Chris Pardy <chris.pardy@ownup.com>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/cachecontrol/json-rules-engine/issues"
},
"homepage": "https://github.com/cachecontrol/json-rules-engine",
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/node": "^22.8.2",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"lodash": "4.17.21",
"perfy": "^1.1.5",
"prettier": "^3.3.3",
"tsd": "^0.17.0",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"vitest": "^2.1.3"
},
"dependencies": {
"hash-it": "^6.0.0",
"jsonpath-plus": "^10.0.0"
}
}