forked from sensynehealth/polaris-rules-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.67 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
{
"name": "dhos-rules-engine",
"description": "Polaris rules engine",
"private": true,
"version": "0.2.1",
"main": "dist/server/server.js",
"scripts": {
"start": "node ./dist/server/server.js",
"build": "rimraf dist && yarn build:server && yarn build:static",
"build:server": "babel --extensions \".ts,.tsx,.js,.jsx\" src --out-dir dist --",
"build:static": "ncp web dist/web",
"lint": "yarn eslint --quiet ./src/**/*.[tj]s ./tests/**/*.[tj]s",
"test": "cross-env NODE_ENV=jest jest"
},
"engines": {
"node": ">=11.0.0"
},
"contributors": [
{
"name": "Rob Grant",
"email": "[email protected]",
"url": "https://github.com/robertlagrant"
},
{
"name": "Jonathan Daly",
"email": "[email protected]",
"url": "https://github.com/jonadaly"
},
{
"name": "Arsam Sarabi",
"email": "[email protected]",
"url": "https://github.com/arsamsarabi/"
},
{
"name": "Duncan Booth",
"email": "[email protected]"
}
],
"homepage": "https://github.com/polaris-foundation/polaris-rules-engine",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-typescript": "^7.6.0",
"@types/jest": "^24.0.18",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.5",
"chalk": "^2.4.2",
"cross-env": "^5.2.0",
"eslint": "^5.14.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.1.0",
"jest-resolve": "^24.9.0",
"ncp": "^2.0.0",
"rimraf": "^2.6.3",
"supertest": "^3.4.2",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"yarn": "^1.13.0"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"clone": "^2.1.2",
"dayjs": "^1.8.8",
"dhos-scoring-engine": "^1.1.0",
"express": "^4.16.4",
"express-healthcheck": "^0.1.0",
"express-http-context": "^1.2.2",
"json-rules-engine": "^2.3.2",
"lodash.isobjectlike": "^4.0.0",
"log4js": "^4.0.2",
"object-hash": "^1.3.1",
"selectn": "^1.1.2",
"winston": "^3.2.1"
}
}