forked from mithunsatheesh/node-rules
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·68 lines (68 loc) · 1.52 KB
/
package.json
File metadata and controls
executable file
·68 lines (68 loc) · 1.52 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
67
68
{
"name": "node-rules",
"version": "7.1.0",
"description": "Business Rules Engine for JavaScript",
"keywords": [
"bre",
"rete",
"rule",
"rules",
"engine",
"rule engine",
"rules engine",
"javascript rule engine",
"js rule engine",
"forward chaining rule engine",
"inference system"
],
"license": "MIT",
"author": {
"name": "Mithun Satheesh",
"email": "mithunsatish@gmail.com"
},
"contributors": [
{
"name": "Abdul Munim Kazia",
"email": "munim2020@gmail.com",
"url": "http://munimkazia.com"
},
{
"name": "ramanaveli2i",
"url": "https://github.com/ramanaveli2i"
}
],
"repository": {
"type": "git",
"url": "https://github.com/mithunsatheesh/node-rules"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0"
},
"devDependencies": {
"core-js": "^3.15.2",
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.7",
"@babel/preset-env": "^7.14.7",
"@babel/register": "^7.14.5",
"eslint": "^7.29.0",
"colors": "^1.4.0",
"coveralls": "^3.1.1",
"jest": "^27.0.6",
"jest-cli": "^27.0.6",
"webpack": "^5.41.1",
"webpack-cli": "^4.7.2"
},
"main": "index.js",
"engines": {
"node": "10 || 12 || 14 || 16 || 17"
},
"scripts": {
"test": "jest",
"build": "webpack",
"cover": "jest --coverage",
"coveralls": "npm run cover && coveralls < coverage/lcov.info"
},
"readmeFilename": "README.md"
}