forked from bpmn-io/bpmn-js-example-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 847 Bytes
/
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
{
"name": "bpmn-js-example-angular",
"version": "0.0.0",
"description": "An example how to integrate bpmn-js with an Angular application",
"scripts": {
"all": "run-s lint build test e2e",
"build": "cd bpmn-js-app && npm run build",
"dev": "npm run start",
"e2e": "cd bpmn-js-app && npm run e2e -- bpmn-js-angular-e2e-ci",
"lint": "cd bpmn-js-app && npm run lint",
"postinstall": "cd bpmn-js-app && npm install",
"start": "cd bpmn-js-app && npm start",
"test": "cd bpmn-js-app && npm test -- --watch=false --no-progress --browsers=ChromeHeadless"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bpmn-io/bpmn-js-example-angular.git"
},
"keywords": [
"Angular",
"bpmn-js",
"example"
],
"license": "MIT",
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}