-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 901 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 901 Bytes
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
{
"name": "rules-engine",
"version": "0.3.0",
"description": "A node.js module to check if an event array matches some specifications. Usefull when you want to compare many rules with many events and check if the final output is true/false.",
"main": "index.js",
"scripts": {
"pretest": "jshint lib",
"test": "node_modules/jasmine-node/bin/jasmine-node tests --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dial-once/node-rules-engine.git"
},
"keywords": [
"node",
"rule",
"engine",
"condition",
"test"
],
"author": "Dial Once",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/dial-once/node-rules-engine/issues"
},
"homepage": "https://github.com/dial-once/node-rules-engine#readme",
"devDependencies": {
"jasmine-node": "^1.14.5"
},
"dependencies": {
"lodash": "^4.0.1"
}
}