-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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
{
"name": "brie",
"description": "Business Rules Integration Engine (brie). Node module for managing business rules, feature flags, and decision logic",
"author": {
"name": "Jason Corns",
"email": "jason.corns@peopleconnect.us"
},
"license": "MIT",
"version": "3.0.4",
"homepage": "https://peopleconnectus.github.io/brie/",
"main": "lib/brie",
"repository": {
"type": "git",
"url": "git+https://github.com/peopleconnectus/brie.git"
},
"keywords": [
"feature",
"flip",
"toggle",
"feature flipping",
"feature toggling",
"continuous integration",
"business rules engine",
"business rules management system",
"B.R.E.",
"B.R.M.S",
"BRE",
"BRMS"
],
"dependencies": {
"debug": "^3.1.0",
"lodash": "4.17.21"
},
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/peopleconnectus/brie/issues"
},
"devDependencies": {
"istanbul": "^0.4.5",
"mocha": "^8.1.1",
"mocha-eslint": "^7.0.0"
},
"scripts": {
"test": "node node_modules/.bin/mocha",
"cover": "node node_modules/.bin/istanbul cover _mocha"
}
}