-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 986 Bytes
/
package.json
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
{
"name": "versafix-social-icons",
"version": "1.1.4",
"description": "Social icon pack for Mosaico's versafix-1 master template",
"main": "index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git@github.com:voidlabs/versafix-social-icons.git"
},
"scripts": {
"build": "node index.js",
"clean": "del-cli icons-overview/*.png icons/*.png edres/*.png"
},
"author": "Stefano Bagnara",
"license": "MIT",
"devDependencies": {
"pngquant-bin": "^8.0.1",
"del-cli": "^5.1.0",
"semver-regex": ">=4.0.5"
},
"engines": {
"node": ">= 13.2.0",
"npm": ">= 8.0.0"
},
"release-it": {
"git": {
"addUntrackedFiles": true
},
"github": {
"release": true,
"releaseName": "v${version}"
},
"hooks": {
"after:bump": [
"npm run clean",
"npm run build"
],
"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
}
}
}