Skip to content
Snippets Groups Projects
package.json 1.01 KiB
Newer Older
Matthieu Fesselier's avatar
Matthieu Fesselier committed
{
  "name": "@startinblox/component-invoicing",
  "version": "0.1.0",
  "description": "Invoicing component for startinblox",
  "main": "sib-invoicing.js",
  "repository": {
    "type": "git",
Clément's avatar
Clément committed
    "url": "git@git.startinblox.com:components/sib-invoicing.git"
Matthieu Fesselier's avatar
Matthieu Fesselier committed
  },
  "author": "startinblox",
  "license": "MIT",
  "release": {
    "branch": "master",
    "plugins": [
      [
        "@semantic-release/commit-analyzer",
        {
          "preset": "angular",
          "releaseRules": [
            {
              "type": "major",
              "release": "major"
            },
            {
              "type": "minor",
              "release": "minor"
            },
            {
              "type": "/.*/",
              "release": "patch"
            }
          ]
        }
      ],
      "@semantic-release/release-notes-generator",
      "@semantic-release/gitlab",
      "@semantic-release/npm"
    ]
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@startinblox/core": "^0.6.0"
  }
}