forked from paed01/bpmn-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.84 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.84 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
{
"name": "bpmn-elements",
"version": "6.0.0",
"description": "Executable workflow elements based on BPMN 2.0",
"main": "dist/index.js",
"module": "index.js",
"scripts": {
"test": "mocha -R dot",
"posttest": "npm run dist && eslint . --cache",
"prepare": "npm run dist",
"cov:html": "nyc mocha -R dot && nyc report --reporter=html",
"test:lcov": "nyc mocha -R dot && nyc report --reporter lcov && npm run posttest",
"dist": "babel index.js -d dist && babel src -d dist/src",
"predist": "node -e \"fs.rmdirSync('./dist/src', {recursive: true});\"",
"test-md": "node scripts/test-markdown ./API.md && node scripts/test-markdown ./docs/Examples.md",
"toc": "node scripts/generate-api-toc ./API.md,./docs/Examples.md,./docs/Form.md"
},
"repository": {
"type": "git",
"url": "git://github.com/paed01/bpmn-elements"
},
"author": {
"name": "Pål Edman",
"url": "https://github.com/paed01"
},
"license": "MIT",
"keywords": [
"workflow",
"automation",
"bpmn",
"bpmn 2",
"isomorphic",
"tree-shakeable"
],
"nyc": {
"exclude": [
"dist",
"test",
"babel.config.js"
]
},
"files": [
"dist/src",
"dist/index.js",
"src",
"index.js"
],
"devDependencies": {
"@aircall/expression-parser": "^1.0.2",
"@babel/cli": "^7.15.7",
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.8",
"@babel/register": "^7.15.3",
"bpmn-moddle": "^7.1.2",
"camunda-bpmn-moddle": "^6.1.0",
"chai": "^4.2.0",
"chronokinesis": "^3.0.0",
"debug": "^4.3.1",
"eslint": "^7.27.0",
"got": "^11.8.2",
"mocha": "^9.1.0",
"mocha-cakes-2": "^3.3.0",
"moddle-context-serializer": "^1.1.1",
"nock": "^13.1.2",
"nyc": "^15.1.0"
},
"dependencies": {
"iso8601-duration": "^1.3.0",
"smqp": "^5.1.0"
}
}