nunof07/smalltypes

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "smalltypes",
  "version": "0.12.0",
  "description": "Object-oriented utility framework written in TypeScript.",
  "main": "dist/smalltypes.min.js",
  "types": "dist/smalltypes.d.ts",
  "scripts": {
    "info": "npm-scripts-info",
    "start": "npm run dev",
    "dev": "gulp dev",
    "lint": "tslint --config tslint.json --project tsconfig.json --format stylish src/**/*.ts",
    "test": "mocha --opts mocha.opts",
    "build:script": "rollup --config",
    "build": "rollup --config && gulp declarations && gulp documentation",
    "coverage": "nyc npm run test",
    "coverage:codecov": "codecov",
    "semantic-release": "semantic-release",
    "commit": "git add -A && git-cz"
  },
  "scripts-info": {
    "info": "Displays information about the scripts",
    "start": "Lint, test, and watch for changes",
    "dev": "Lint, test, and watch for changes",
    "lint": "Lint the source code",
    "test": "Run the tests",
    "build:script": "Build the JavaScript file",
    "build": "Build JavaScript, declarations, and documentation",
    "coverage": "Run the tests and report coverage to console",
    "coverage:codecov": "Upload test coverage to Codecov",
    "semantic-release": "Run semantic release (check for changes and publish new versions) - meant to be run from CI",
    "commit": "Stags all current changes and commit using Commitizen"
  },
  "author": {
    "name": "Nuno Freitas"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/nunof07/smalltypes.git"
  },
  "bugs": {
    "url": "https://github.com/nunof07/smalltypes/issues"
  },
  "homepage": "https://github.com/nunof07/smalltypes#readme",
  "devDependencies": {
    "@semantic-release/git": "^2.0.1",
    "@types/chai": "^4.1.0",
    "@types/core-js": "^0.9.44",
    "@types/mocha": "^2.2.46",
    "@types/node": "^9.3.0",
    "babel-core": "^6.26.0",
    "babel-plugin-external-helpers": "^6.22.0",
    "babel-plugin-transform-regenerator": "^6.26.0",
    "babel-plugin-transform-runtime": "^6.23.0",
    "babel-preset-env": "^1.6.0",
    "chai": "^4.1.2",
    "codecov": "^3.0.0",
    "commitizen": "^2.9.6",
    "cz-conventional-changelog": "^2.1.0",
    "del": "^3.0.0",
    "dts-builder": "^1.1.3",
    "gulp": "^3.9.1",
    "gulp-batch": "^1.0.5",
    "gulp-cached": "^1.1.1",
    "gulp-file": "^0.4.0",
    "gulp-intermediate": "^3.0.1",
    "gulp-load-plugins": "^1.5.0",
    "gulp-mocha": "^5.0.0",
    "gulp-plumber": "^1.1.0",
    "gulp-sequence": "^1.0.0",
    "gulp-tslint": "^8.1.2",
    "gulp-typedoc": "^2.1.1",
    "gulp-typescript": "^3.2.3",
    "gulp-watch": "^5.0.0",
    "jsdom": "^11.3.0",
    "jsdom-global": "^3.0.2",
    "merge2": "^1.2.0",
    "mocha": "^4.0.1",
    "mocha-typescript": "^1.1.12",
    "npm-scripts-info": "^0.3.6",
    "nyc": "^11.4.0",
    "rollup": "^0.54.0",
    "rollup-plugin-babel": "^3.0.3",
    "rollup-plugin-commonjs": "^8.2.6",
    "rollup-plugin-license": "^0.5.0",
    "rollup-plugin-node-resolve": "^3.0.0",
    "rollup-plugin-typescript2": "^0.10.0",
    "rollup-plugin-uglify": "^2.0.1",
    "semantic-release": "^12.2.2",
    "source-map-support": "^0.5.0",
    "ts-node": "^4.0.1",
    "tsconfig-paths": "^3.0.0",
    "tslint": "^5.7.0",
    "tslint-eslint-rules": "^4.1.1",
    "tslint-immutable": "^4.5.0",
    "tslint-microsoft-contrib": "^5.0.1",
    "tslint-no-subclass": "^0.2.1",
    "typedoc": "^0.9.0",
    "typescript": "^2.6.1",
    "typings": "^2.1.1",
    "uglify-es": "^3.3.2"
  },
  "dependencies": {},
  "files": [
    "dist/"
  ],
  "config": {
    "commitizen": {
      "path": "node_modules/cz-conventional-changelog"
    }
  },
  "release": {
    "publish": [
      "@semantic-release/npm",
      {
        "path": "@semantic-release/git",
        "assets": [
          "package.json",
          "docs"
        ],
        "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
      },
      "@semantic-release/github"
    ]
  }
}