-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.24 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
{
"name": "@hauptmedia/zeebe-exporter-types",
"version": "1.3.1",
"description": "Typescript type definitions for JSON encoded export data used by the Zeebe Workflow Automation Engine.",
"author": {
"name": "Julian Haupt",
"email": "julian@haupt.media"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md",
"!**/*.tsbuildinfo"
],
"repository": "https://github.com/hauptmedia/zeebe-exporter-types",
"homepage": "https://hauptmedia.github.io/zeebe-exporter-types/",
"license": "Apache-2.0",
"keywords": [
"zeebe",
"zeebe.io",
"microservices",
"orchestration",
"bpmn",
"Camunda",
"automation",
"process",
"workflow",
"exporter",
"protocol"
],
"scripts": {
"build": "run-s clean build:jsonschema build:esm build:cjs build:doc build:copyfiles",
"build:copyfiles": "shx cp package.cjs.json dist/cjs/package.json && shx cp package.esm.json dist/esm/package.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:doc": "typedoc src/ --exclude **/*.spec.ts --target es2018 --mode file --out dist/docs",
"build:jsonschema": "ts-node tools/generate-json-schemas.ts",
"publish:gh-pages": "run-s build && shx mkdir gh-pages && shx cp -r dist/docs/* gh-pages/ && shx cp -r src/generated/jsonschema gh-pages/ && gh-pages -d gh-pages",
"publish:npm": "run-s build && npm publish --access public",
"clean": "shx rm -rf dist/ gh-pages/",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:lint": "eslint src --ext .ts --fix"
},
"devDependencies": {
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"eslint": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.0",
"gh-pages": "^4.0.0",
"glob": "^8.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"shx": "^0.3.4",
"typedoc": "^0.19.0",
"typescript": "^4.9.3",
"typescript-json-schema": "^0.55.0"
}
}