-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 867 Bytes
/
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-evaluater",
"version": "0.1.1",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"files": ["dist"],
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"example-node": "cd example/node && ts-node ./node.ts",
"publish": "npm run build && npm publish"
},
"dependencies": {
"dmn-moddle": "^9.1.0",
"feelin": "^0.23.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/node": "^14.6.4",
"rollup": "^2.26.10",
"rollup-plugin-typescript2": "^0.27.2",
"ts-node": "^9.0.0",
"tslib": "^2.0.1",
"typescript": "^4.0.2"
},
"description": "Parses and evaluates dnm diagramms in node or the browser.",
"author": "Pablo Maurer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pablomaurer/dmn-evaluator"
}
}