-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 KB
/
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
{
"name": "logzone",
"version": "1.0.1",
"description": "a package to print pretty log messages. you can use predefined or customize your own!",
"main": "dist/logzone.js",
"scripts": {
"cmt": "git-cz",
"build": "webpack",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/muhammedMoussa/logzone.git"
},
"keywords": [
"console",
"log",
"console.log"
],
"author": "Muhammed Moussa <muhammedmoussa@hotmail.com> (http://muhammedmoussa.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/muhammedMoussa/logzone/issues"
},
"homepage": "https://github.com/muhammedMoussa/logzone#readme",
"devDependencies": {
"commitizen": "4.2.3",
"cz-conventional-changelog": "3.3.0",
"react": "17.0.2",
"semantic-release": "17.4.2",
"webpack": "5.32.0",
"webpack-cli": "4.6.0"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"files": [
"dist",
"README.md"
]
}