-
Notifications
You must be signed in to change notification settings - Fork 112
/
package.json
executable file
·103 lines (103 loc) · 2.35 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "node-rules",
"version": "9.1.1",
"description": "Business Rules Engine for JavaScript",
"repository": {
"type": "git",
"url": "https://github.com/mithunsatheesh/node-rules"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@types/jest": "^27.0.0",
"@types/lodash.clonedeep": "^4.5.6",
"@types/lodash.isequal": "^4.5.5",
"@types/node": "^16.3.3",
"jest": "^27.0.6",
"jest-cli": "^27.0.6",
"npm": "^9.6.0",
"rollup": "^3.7.0",
"rollup-plugin-node-globals": "^1.4.0",
"ts-jest": "^27.0.3",
"tsup": "^4.12.5",
"typescript": "^4.3.5"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=12"
},
"scripts": {
"prepare": "npm run build",
"test": "jest",
"build": "tsup ./lib/index.ts --dts && rollup --config ./rollup.config.mjs",
"cover": "jest --coverage",
"clean": "rm -rf ./dist ./node_modules && rm package-lock.json",
"examples": "./examples/runner.sh"
},
"readmeFilename": "README.md",
"license": "MIT",
"author": {
"name": "Mithun Satheesh",
"url": "https://github.com/mithunsatheesh"
},
"contributors": [
{
"name": "Abdul Munim Kazia",
"url": "http://munimkazia.com"
},
{
"name": "ramanaveli2i",
"url": "https://github.com/ramanaveli2i"
},
{
"name": "Alexis Tyler",
"url": "https://github.com/OmgImAlexis"
},
{
"name": "Joseph Heck",
"url": "https://github.com/heckj"
},
{
"name": "Jacob Jewell",
"url": "https://github.com/jakesjews"
},
{
"name": "pdapel",
"url": "https://github.com/pdapel"
},
{
"name": "Dirk Rejahl",
"url": "https://github.com/drejahl"
},
{
"name": "Matija Munjaković",
"url": "https://github.com/matija"
},
{
"name": "Alex Velikanov",
"url": "https://github.com/Alec2435"
}
],
"keywords": [
"bre",
"rete",
"rule",
"rules",
"engine",
"rule engine",
"rules engine",
"javascript rule engine",
"js rule engine",
"forward chaining rule engine",
"inference system"
]
}