-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 loc) · 1.7 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
{
"name": "bpmn-js-integration",
"version": "0.0.1",
"description": "integration tests for bpmn-js",
"scripts": {
"test": "run-s test:all",
"test:all": "npm run mocha -- test/spec/base/*.js test/spec/modeling/*.js test/spec/miwg/*.js",
"test:miwg": "npm run mocha -- test/spec/miwg/*.js",
"miwg": "run-s build test:miwg",
"dev": "npm run test:all -- --watch",
"all": "run-s lint clean build test",
"lint": "eslint .",
"mocha": "mocha --exit --reporter spec -r test/expect.js",
"clean": "rimraf dist tmp/integration",
"build": "rollup -c --bundleConfigAsCjs"
},
"main": "lib/main.js",
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/bpmn-js-integration"
},
"keywords": [
"bpmn",
"bpmn-js",
"test suite",
"integration test",
"test",
"miwg"
],
"author": {
"name": "Nico Rehwaldt",
"url": "https://github.com/Nikku"
},
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
],
"license": "MIT",
"private": true,
"browser": {
"bpmn-js": "./vendor/bpmn.js"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"async": "^3.2.5",
"chai": "^4.4.1",
"debug": "^4.3.4",
"eslint": "^9.0.0",
"eslint-plugin-bpmn-io": "^2.0.2",
"glob": "^11.0.0",
"mocha": "^10.4.0",
"npm-run-all2": "^7.0.0",
"rimraf": "^6.0.0",
"rollup": "^4.17.2",
"semver": "^7.6.2",
"xsd-schema-validator": "^0.7.0"
},
"dependencies": {
"bpmn-js": "^18.2.0",
"bpmn-js-cli": "^2.4.0",
"bpmn-moddle": "^9.0.1",
"min-dash": "^4.0.0",
"puppeteer": "^24.0.0"
}
}