UNPKG

@pobuca/xsc

Version:

A cli tool with common git command sets.

101 lines (100 loc) 2.28 kB
{ "name": "@pobuca/xsc", "description": "A cli tool with common git command sets.", "version": "1.33.0", "license": "MPL-2.0", "readme": "README.md", "contributors": [ "Kosmas Papadatos <kosmas.papadatos@gmail.com> (https://github.com/kpapadatos)" ], "repository": { "type": "git", "url": "git+https://github.com/pobuca/xsc.git" }, "bin": { "xcommit": "./bin/xcommit.js", "xfeature": "./bin/xfeature.js", "xrelease": "./bin/xrelease.js", "xhotfix": "./bin/xhotfix.js", "xsc": "./bin/xsc.js" }, "scripts": { "dev": "npm link && concurrently -r npm:build:watch npm:test:watch", "test:log": "mocha --reporter spec", "test": "nyc mocha", "test:watch": "nyc mocha --reporter spec --watch-extensions ts --watch \"src/**/*.test.ts\"", "build": "tsc", "build:watch": "tsc -w", "setSonarqubeVersion": "ts-node scripts/setSonarqubeVersion" }, "dependencies": { "@types/eventemitter2": "^4.1.0", "@types/semver": "^6.2.0", "chalk": "^2.4.2", "eventemitter2": "^5.0.1", "gulp": "^4.0.2", "semver": "^6.3.0" }, "devDependencies": { "@istanbuljs/nyc-config-typescript": "^0.1.3", "@types/chai": "^4.2.4", "@types/chalk": "^2.2.0", "@types/del": "^4.0.0", "@types/gulp": "^4.0.6", "@types/mocha": "^5.2.7", "@types/node": "^12.11.7", "chai": "^4.2.0", "concurrently": "^5.0.0", "del": "^5.1.0", "mocha": "^6.2.2", "mocha-junit-reporter": "^1.23.1", "mocha-lcov-reporter": "^1.3.0", "nodemon": "^1.19.4", "nyc": "^14.1.1", "ts-node": "^8.4.1", "tslint": "^5.20.1", "typescript": "^3.7.4" }, "bugs": { "url": "https://github.com/pobuca/xsc/issues" }, "homepage": "https://github.com/pobuca/xsc#readme", "main": "bin/xcommit.js", "keywords": [ "git", "flow", "git-flow", "pobuca", "workflow", "xsc" ], "nyc": { "extends": "@istanbuljs/nyc-config-typescript", "reporter": [ "text-summary", "cobertura", "lcov" ], "all": true, "extension": [ ".ts" ], "require": [ "ts-node/register" ], "plugins": [], "sourceMap": true, "instrument": true, "include": [ "src/**/*.ts" ], "exclude": [ "src/**/*.test.ts" ] }, "author": { "email": "k.papadatos@pobuca.com", "name": "Kosmas Papadatos", "url": "https://github.com/kpapadatos" } }