forked from zeebe-io/zeebe-modeler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.56 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
{
"name": "zeebe-modeler-builder",
"version": "0.5.0",
"description": "Zeebe Modeler for BPMN based on bpmn.io",
"scripts": {
"app:auto-test": "npm run app:test -- --watch",
"app:dev": "electron ./app/dev.js resources/diagram/simple.bpmn",
"app:test": "nyc --reporter lcov --exclude \"app/test/**\" --exclude \"app/**/__tests__\" mocha --require ./app/test/expect \"app/**/*-spec.js\"",
"client:build": "(cd client && npm run build)",
"client:auto-test": "(cd client && npm run auto-test)",
"client:dev": "(cd client && npm run dev)",
"client:test": "(cd client && npm run test)",
"all": "run-s clean lint test \"build -- {@}\" --",
"auto-test": "run-p *:auto-test",
"clean": "del-cli 'dist/*' app/public",
"dev": "run-p \"app:dev -- {@}\" client:dev --",
"build:distro": "node tasks/distro.js",
"build:test-distro": "node tasks/test-distro.js",
"build": "run-s client:build \"build:distro -- {@}\" \"build:test-distro -- {@}\" --",
"lint": "eslint .",
"postinstall": "lerna bootstrap",
"prerelease": "run-s update-license-book",
"update-license-book": "node tasks/license-book.js -o THIRD_PARTY_NOTICES -c",
"send-license-book-summary": "node tasks/send-license-book-summary.js -s",
"release": "lerna publish --force-publish",
"test": "run-s *:test",
"start": "run-s \"dev -- {@}\" --",
"sync": "node tasks/sync-fork.js"
},
"author": "Camunda <http://camunda.com>",
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/zeebe-io/zeebe-modeler",
"repository": {
"type": "git",
"url": "https://github.com/zeebe-io/zeebe-modeler"
},
"devDependencies": {
"archiver": "^3.0.3",
"builder-util": "^22.3.3",
"chai": "^4.2.0",
"cpx": "^1.5.0",
"del": "^3.0.0",
"del-cli": "^1.1.0",
"diff2html": "^2.11.2",
"electron": "^7.1.12",
"electron-builder": "^22.3.2",
"electron-devtools-installer": "^2.2.4",
"electron-notarize": "^0.2.1",
"electron-publisher-s3": "^20.17.2",
"electron-reloader": "^0.2.0",
"eslint": "^5.16.0",
"eslint-plugin-bpmn-io": "^0.11.0",
"eslint-plugin-camunda-licensed": "^0.4.3",
"eslint-plugin-import": "^2.18.2",
"execa": "^1.0.0",
"lerna": "^3.16.1",
"license-checker": "^25.0.1",
"mocha": "^5.2.0",
"mri": "^1.1.4",
"nodemailer": "^5.1.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"proxyquire": "^2.1.1",
"simple-git": "^1.124.0",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"tar-stream": "^2.1.0",
"which": "^1.2.0",
"yauzl": "^2.10.0"
}
}