-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.39 KB
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
91
92
93
94
95
96
97
98
99
{
"name": "dmn-elements",
"version": "0.1.0",
"description": "Executable decision elements based on DMN 1.3, 1.4 and 1.5",
"type": "module",
"main": "./src/index.js",
"module": "./src/index.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
},
"./errors": {
"types": "./types/index.d.ts",
"default": "./src/error/Errors.js"
},
"./dmn-moddle": {
"types": "./types/index.d.ts",
"default": "./src/dmnModdle.js"
}
},
"sideEffects": false,
"scripts": {
"test": "mocha -R @bonniernews/hot-bev -p -t 3000",
"posttest": "npm run lint && npm run test:md && npm run typecheck",
"test:md": "texample ./docs/Examples.md,./docs/API.md,./README.md",
"lint": "eslint . --cache && prettier . --check --cache",
"pretypecheck": "npm run build:types",
"typecheck": "tsc --noEmit && tsc -p test/tsconfig.json",
"prepack": "npm run build:types",
"cov:html": "c8 -r html -r text mocha -R @bonniernews/hot-bev -p -t 3000",
"test:lcov": "c8 -r lcov mocha && npm run lint",
"build:types": "dts-buddy",
"test:tck": "node scripts/tck/run.js"
},
"author": {
"name": "Pål Edman",
"url": "https://github.com/paed01"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zerodep/dmn-elements.git"
},
"license": "MIT",
"keywords": [
"dmn",
"dmn 1.3",
"dmn 1.4",
"dmn 1.5",
"decision",
"decision table",
"drg",
"feel",
"isomorphic",
"tree-shakeable"
],
"files": [
"src",
"types",
"*.d.ts"
],
"c8": {
"include": [
"src/**/*"
]
},
"peerDependencies": {
"dmn-moddle": "^12.0.1",
"feelin": "^7.0.1"
},
"peerDependenciesMeta": {
"dmn-moddle": {
"optional": true
}
},
"devDependencies": {
"@bonniernews/hot-bev": "^0.4.0",
"@eslint/js": "^10.0.1",
"@types/chai": "^5.2.3",
"@types/debug": "^4.1.13",
"@types/luxon": "^3.7.2",
"@types/mocha": "^10.0.10",
"@types/node": "^22.20.1",
"c8": "^12.0.0",
"chai": "^6.2.1",
"chronokinesis": "^8.0.0",
"debug": "^4.3.4",
"dmn-moddle": "^12.0.1",
"dts-buddy": "^0.8.0",
"eslint": "^10.6.0",
"globals": "^17.0.0",
"mocha": "^11.0.1",
"mocha-cakes-2": "^3.3.0",
"nock": "^14.0.16",
"prettier": "^3.2.5",
"texample": "^1.0.2"
}
}