-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
63 lines (63 loc) · 1.78 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
{
"name": "@bpmn-io/element-templates-validator",
"version": "2.3.2",
"description": "Validate element templates based on JSON Schema",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"source": "lib/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"distro": "run-s build test:build",
"lint": "eslint .",
"prepublishOnly": "run-s distro",
"test": "mocha --reporter=spec --recursive test/spec",
"test:build": "mocha --reporter=spec --recursive test/distro",
"all": "run-s lint build test distro"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bpmn-io/element-templates-validator.git"
},
"keywords": [
"json-schema",
"json-schema-validator",
"element templates",
"validator",
"validation"
],
"author": {
"name": "Maciej Barelkowski",
"email": "[email protected]",
"url": "https://github.com/barmac"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/bpmn-io/element-templates-validator/issues"
},
"homepage": "https://github.com/bpmn-io/element-templates-validator#readme",
"devDependencies": {
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"ajv": "^8.17.1",
"ajv-errors": "^3.0.0",
"chai": "^4.5.0",
"eslint": "^9.0.0",
"eslint-plugin-bpmn-io": "^2.0.2",
"esm": "^3.2.25",
"mocha": "^10.8.2",
"npm-run-all2": "^7.0.1",
"rollup": "^4.28.0"
},
"dependencies": {
"@camunda/element-templates-json-schema": "^0.18.1",
"@camunda/zeebe-element-templates-json-schema": "^0.22.2",
"json-source-map": "^0.6.1",
"min-dash": "^4.1.1"
}
}