-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
109 lines (109 loc) · 2.82 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "bpmn-elements",
"version": "16.2.2",
"description": "Executable workflow elements based on BPMN 2.0",
"type": "module",
"main": "./dist/index.js",
"module": "./src/index.js",
"jsnext:main": "./src/index.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"require": "./dist/index.js",
"import": "./src/index.js"
},
"./events": {
"types": "./types/index.d.ts",
"require": "./dist/events/index.js",
"import": "./src/events/index.js"
},
"./eventDefinitions": {
"types": "./types/index.d.ts",
"require": "./dist/eventDefinitions/index.js",
"import": "./src/eventDefinitions/index.js"
},
"./flows": {
"types": "./types/index.d.ts",
"require": "./dist/flows/index.js",
"import": "./src/flows/index.js"
},
"./gateways": {
"types": "./types/index.d.ts",
"require": "./dist/gateways/index.js",
"import": "./src/gateways/index.js"
},
"./tasks": {
"types": "./types/index.d.ts",
"require": "./dist/tasks/index.js",
"import": "./src/tasks/index.js"
}
},
"sideEffects": false,
"scripts": {
"test": "mocha -R @bonniernews/hot-bev -p -t 3000",
"posttest": "npm run lint && npm run dist",
"lint": "eslint . --cache && prettier . --check --cache",
"prepack": "npm run dist",
"test:md": "texample ./docs/Examples.md,./docs/StartEvent.md,./docs/Extension.md,./docs/ConditionalEventDefinition.md",
"cov:html": "c8 -r html -r text mocha -R @bonniernews/hot-bev -p -t 3000",
"test:lcov": "c8 -r lcov mocha && npm run lint",
"dist": "babel src -d dist/"
},
"repository": {
"type": "git",
"url": "git://github.com/paed01/bpmn-elements.git"
},
"author": {
"name": "Pål Edman",
"url": "https://github.com/paed01"
},
"license": "MIT",
"keywords": [
"workflow",
"automation",
"bpmn",
"bpmn 2",
"isomorphic",
"tree-shakeable"
],
"files": [
"dist",
"src",
"types",
"*.d.ts"
],
"c8": {
"include": [
"src/**/*"
]
},
"devDependencies": {
"@aircall/expression-parser": "^1.0.4",
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@babel/register": "^7.23.7",
"@bonniernews/hot-bev": "^0.4.0",
"@types/node": "^18.19.63",
"bpmn-moddle": "^9.0.1",
"c8": "^10.1.1",
"camunda-bpmn-moddle": "^7.0.1",
"chai": "^5.1.0",
"chronokinesis": "^6.0.0",
"debug": "^4.3.4",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"got": "^14.2.1",
"mocha": "^11.0.1",
"mocha-cakes-2": "^3.3.0",
"moddle-context-serializer": "^4.2.1",
"nock": "^13.5.3",
"prettier": "^3.2.5",
"texample": "^0.0.6"
},
"dependencies": {
"@0dep/piso": "^2.4.0",
"smqp": "^9.0.4"
}
}