-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.1 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
{
"name": "@onify/flow-extensions",
"version": "9.0.0",
"description": "Onify Flow extensions",
"type": "module",
"module": "src/index.js",
"main": "dist/index.js",
"types": "./index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./types/index.d.ts",
"require": "./dist/index.js",
"import": "./src/index.js"
},
"./FlowScripts": {
"types": "./types/index.d.ts",
"require": "./dist/FlowScripts.js",
"import": "./dist/FlowScripts.js"
}
},
"scripts": {
"test": "mocha",
"posttest": "npm run lint && npm run dist && texample",
"lint": "eslint . --cache && prettier . --check --cache",
"prepare": "npm run dist",
"dist": "babel src -d dist && babel test/helpers/FlowScripts.js -d dist",
"test:lcov": "c8 -r lcov mocha && npm run lint",
"cov:html": "c8 mocha && c8 report --reporter html"
},
"keywords": [
"onify",
"flow",
"bpmn",
"bpmn-engine",
"extensions"
],
"repository": {
"type": "git",
"url": "git://github.com/onify/flow-extensions.git"
},
"author": {
"name": "Onify",
"url": "https://github.com/onify"
},
"license": "MIT",
"devDependencies": {
"@aircall/expression-parser": "^1.0.4",
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/register": "^7.23.7",
"bpmn-elements-8-1": "npm:[email protected]",
"bpmn-engine": "^23.0.1",
"bpmn-engine-14": "npm:bpmn-engine@14",
"bpmn-moddle": "^9.0.1",
"c8": "^10.1.2",
"camunda-bpmn-moddle": "^7.0.1",
"chai": "^5.0.3",
"chronokinesis": "^6.0.0",
"debug": "^4.3.4",
"eslint": "^9.3.0",
"mocha": "^11.0.1",
"mocha-cakes-2": "^3.3.0",
"moddle-context-serializer": "^4.1.1",
"nock": "^13.5.4",
"prettier": "^3.2.4",
"texample": "^0.0.6"
},
"peerDependencies": {
"@0dep/piso": ">=2",
"bpmn-elements": ">=14",
"croner": ">=9.0.0"
},
"files": [
"src",
"dist",
"types",
"FlowScripts.d.ts"
],
"c8": {
"exclude": [
"dist",
"test",
"babel.config.cjs"
]
}
}