UNPKG

1.66 kBJSONView Raw
1{
2 "name": "@process-engine/ci_tools",
3 "version": "4.0.2",
4 "description": "CI tools for process-engine.io",
5 "main": "dist/ci_tools.js",
6 "scripts": {
7 "auto-publish-if-applicable": "node dist/ci_tools.js setup-git-and-npm-connections && node dist/ci_tools.js prepare-version && node dist/ci_tools.js commit-and-tag-version --only-on-primary-branches && node dist/ci_tools.js update-github-release --only-on-primary-branches --use-title-and-text-from-git-tag && node dist/ci_tools.js publish-npm-package --create-tag-from-branch-name",
8 "clean": "rm -rf dist",
9 "build": "npm run clean && tsc",
10 "prepare": "npm run build",
11 "test": "npm run test:unit",
12 "test:unit": "mocha -r ts-node/register -r choma \"src/**/*.test.ts\"",
13 "test:integration": "mocha --slow 60000 --timeout 600000 -r ts-node/register -r choma \"test/integration/*.test.ts\""
14 },
15 "bin": {
16 "ci_tools": "./dist/ci_tools.js"
17 },
18 "repository": {
19 "type": "git",
20 "url": "git@github.com:process-engine/ci_tools.git"
21 },
22 "author": "5Minds IT-Solutions GmbH & Co. KG",
23 "license": "MIT",
24 "dependencies": {
25 "@octokit/rest": "19.0.5",
26 "chalk": "^4.1.2",
27 "cross-fetch": "3.1.5",
28 "compare-versions": "^5.0.3",
29 "glob": "^8.0.3",
30 "mime-types": "^2.1.35",
31 "moment": "^2.29.4",
32 "shelljs": "^0.8.5",
33 "xml2js": "^0.4.23",
34 "yargs-parser": "^21.1.1"
35 },
36 "devDependencies": {
37 "@types/mocha": "^10.0.1",
38 "@types/node": "^16.18.10",
39 "choma": "^1.2.1",
40 "fs-extra": "^8.1.0",
41 "json5": "^2.2.2",
42 "mocha": "^10.2.0",
43 "ts-node": "^10.9.1",
44 "tsconfig": "^7.0.0",
45 "typescript": "^4.9.4"
46 }
47}