aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: d216e1fdc851431a953ef7d60dc6f0eea3b96f06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
  "name": "tabler-icons",
  "version": "1.0.3",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tabler/tabler-icons.git"
  },
  "author": "",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/tabler/tabler-icons/issues"
  },
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/codecalm"
  },
  "files": [
    "icons/*",
    "icons-png/*",
    "tabler-sprite.svg",
    "tabler-sprite-nostroke.svg"
  ],
  "homepage": "https://github.com/tabler/tabler-icons#readme",
  "main": "gulpfile.js",
  "scripts": {
    "precommit": "gulp optimize",
    "optimize": "gulp optimize",
    "start": "bundle exec jekyll serve --watch --livereload",
    "build": "gulp build",
    "png": "gulp svg-to-png",
    "release": "release-it"
  },
  "description": "",
  "devDependencies": {
    "glob": "7.1.6",
    "gulp": "4.0.2",
    "gulp-zip": "5.0.1",
    "minimist": "1.2.5",
    "puppeteer": "2.1.1",
    "release-it": "13.1.2"
  },
  "release-it": {
    "hooks": {
      "after:bump": "npm run build",
      "after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
    },
    "git": {
      "changelog": "gulp changelog-diff --silent --latest-tag ${latestTag}",
      "tagName": "v${version}",
      "requireBranch": "master",
      "requireCommits": true
    },
    "github": {
      "release": true
    }
  }
}