forked from mithunsatheesh/node-rules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 937 Bytes
/
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
{
"name": "node-rules",
"version": "3.1.0",
"description": "Business Rules Engine for JavaScript",
"keywords": [
"bre",
"rules",
"engine",
"rule engine"
],
"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": {
"moment": "^2.20.1",
"underscore": "^1.8.3"
},
"devDependencies": {
"mocha": "1.6.0",
"chai": "*",
"colors": "1.0.3"
},
"main": "index.js",
"engines": {
"node": ">= 0.4.x"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha"
},
"readmeFilename": "README.md"
}