holisticon/nativescript-buildhelper

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@holisticon/nativescript-buildhelper",
  "version": "0.3.1",
  "description": "Basic NPM package for helping on automate releasing of NativeScript Apps",
  "bin": {
    "tns-buildnumbering": "tns-buildnumbering.js",
    "tns-package": "tns-package.js",
    "tns-changelog": "tns-changelog.js",
    "tns-release-notes": "tns-release-notes.js"
  },
  "scripts": {
    "preclean": "npm i rimraf",
    "clean": "rimraf node_modules  && npm i",
    "build": "npm run tsc",
    "tsc": "tsc",
    "postclean": "",
    "debug": "node --debug-brk node_modules/jasmine-node/lib/jasmine-node/cli.js test/specs/*.spec.js",
    "e2e": "jasmine-node test/e2e/*.spec.js --junitreport --output target/e2e-reports/ --verbose --color",
    "jsdoc": "jsdoc -c ./jsdoc.json -t ./node_modules/ink-docstrap/template -R README.md ./etc",
    "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
    "changelog:add": "git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md'",
    "release:pre": "npm run build && npm run test",
    "release:post": "npm run changelog && npm run changelog:add",
    "release:major": "npm run release:pre && npm version major && npm run release:post && git push origin && git push origin --tags && npm run version-and-push",
    "release:minor": "npm run release:pre && npm version minor && npm run release:post && git push origin && git push origin --tags && npm run version-and-push",
    "release:patch": "npm run release:pre && npm version patch && npm run release:post && git push origin && git push origin --tags && npm run version-and-push",
    "version-and-push": "git push origin && git push origin --tags && git push && npm publish",
    "merge-and-publish:pre": "git checkout master && git merge develop",
    "merge-and-publish": "mv ../README.md .&& mv ../LICENSE . && npm publish && git reset --hard && git clean -f",
    "merge-and-publish:post": "git checkout develop"
  },
  "dependencies": {
    "xml2js": "0.4.16",
    "yargs": "12.0.1"
  },
  "devDependencies": {
    "@microsoft/tsdoc": "0.12.5",
    "@types/core-js": "2.5.0",
    "@types/jasmine": "2.8.4",
    "@types/node": "10.12.22",
    "conventional-changelog-cli": "^2.0.12",
    "fs": "0.0.2",
    "ink-docstrap": "1.3.2",
    "jasmine-core": "3.3.0",
    "jasmine-json": "0.0.3",
    "jasmine-node": "1.14.6",
    "rimraf": "^2.6.2",
    "rxjs": "5.5.6",
    "tslint": "5.9.0",
    "tslint-eslint-rules": "5.2.0",
    "typescript": "2.2.2"
  },
  "peerDependencies": {},
  "keywords": [
    "angular2",
    "nativescript",
    "holisticon"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/holisticon/nativescript-buildhelper.git"
  },
  "author": "Martin Reinhardt",
  "license": "MIT",
  "engine-strict": true,
  "engines": {
    "node": ">= 4.4",
    "npm": ">= 3"
  }
}