-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.47 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
{
"name": "@hbtgmbh/dmn-server",
"version": "1.0.2",
"description": "Standalone DMN server with REST and JSON-RPC API, using @hbtgmbh/dmn-eval-js as decision engine",
"license": "MIT",
"main": "bootstrap-server.js",
"bin": {
"dmn-server": "./bootstrap-server.js"
},
"scripts": {
"lint": "eslint .",
"lintfix": "eslint . --fix",
"test": "./node_modules/.bin/mocha ./test/**/*.spec.js",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0"
},
"pre-commit": [
"precommit-msg",
"lint"
],
"engines": {
"node": ">=7.10.1"
},
"repository": {
"type": "git",
"url": "[email protected]:HBTGmbH/dmn-nodejs-server.git"
},
"keywords": [
"FEEL",
"DMN 1.1",
"Decision Table",
"Rule Engine",
"Decision Engine",
"REST"
],
"author": "Andre Hegerath <[email protected]>",
"dependencies": {
"@hbtgmbh/dmn-eval-js": "^1.3.0",
"jsonrpcserver": "^1.1.0",
"loglevel": "^1.6.1",
"restify": "^6.3.4",
"restify-errors": "^6.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chalk": "^1.1.3",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"mocha": "^3.2.0",
"pre-commit": "^1.2.2"
}
}