-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 1.03 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
{
"name": "dmn-engine",
"version": "1.0.5",
"description": "Business Rules Engine for Javascript and Node.js, with built-in Expression Language supporting DMN Decision Table",
"main": "index.js",
"author": {
"name": ""
},
"devDependencies": {
"tsc": "^1.20150623.0",
"typescript": "^3.9.7"
},
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"start:watch": "nodemon app",
"start": "node app.ts",
"test": "mocha -R dot",
"posttest": "eslint . --cache && npm run toc",
"wintest": "node_modules/.bin/mocha",
"toc": "node scripts/generate-api-toc ./docs/API.md,./docs/Examples.md",
"test-md": "node scripts/test-markdown.js ./docs/API.md && node scripts/test-markdown.js ./docs/Examples.md",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"dependencies": {
"@types/node": "^14.0.27",
"dmn-moddle": "^9.1.0",
"googleapis": "^39.2.0",
"iso8601-duration": "^1.2.0",
"js-feel": "^1.4.5"
}
}