-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 1003 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
{
"name": "php-icons",
"version": "1.2.0",
"description": "A PHP library based on iconify's API to download and render svg icons from popular open source icon sets.",
"private": true,
"author": {
"name": "Yassine Doghri",
"email": "[email protected]",
"url": "https://yassinedoghri.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/yassinedoghri/php-icons.git"
},
"license": "MIT",
"scripts": {
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"commit": "cz"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"commitizen": "^4.3.1",
"conventional-changelog-conventionalcommits": "^8.0.0",
"cz-conventional-changelog": "^3.3.0",
"prettier": "^3.3.3",
"semantic-release": "^24.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}