forked from camunda/element-templates-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.88 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
{
"name": "element-templates-json-schema-build",
"version": "0.0.0",
"private": true,
"scripts": {
"lint": "eslint packages",
"test": "lerna run test",
"dev": "run-s build \"lerna-dev -- {@}\" -- ",
"lerna-dev": "lerna run dev --stream --scope",
"build": "lerna run build --parallel --stream",
"build:camunda": "lerna run build --scope @camunda/element-templates-json-schema",
"build:zeebe": "lerna run build --scope @camunda/zeebe-element-templates-json-schema",
"all": "run-s build lint test",
"lerna-publish": "lerna publish",
"lerna-publish:alpha": "lerna publish --dist-tag next",
"lerna-publish:dry": "lerna version --no-git-tag-version --no-push",
"release": "run-s build test lerna-publish",
"release:alpha": "run-s build test lerna-publish:alpha",
"release:dry": "run-s build test lerna-publish:dry",
"postinstall": "lerna bootstrap --hoist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/camunda/element-templates-json-schema.git"
},
"keywords": [
"json-schema",
"element-templates",
"camunda"
],
"workspaces": [
"packages/*"
],
"author": "Niklas Kiefer <niklas.kiefer@camunda.com (https://github.com/pinussilvestrus)",
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/camunda/element-templates-json-schema/issues"
},
"homepage": "https://github.com/camunda/element-templates-json-schema#readme",
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.9",
"ajv": "^7.2.3",
"ajv-errors": "^2.0.1",
"chai": "^4.3.6",
"eslint": "^8.22.0",
"eslint-plugin-bpmn-io": "^0.14.1",
"esm": "^3.2.25",
"lerna": "^5.4.3",
"min-dash": "^3.8.1",
"mocha": "^8.4.0",
"mri": "^1.2.0",
"npm-run-all": "^4.1.5"
}
}