-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1 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
42
43
44
45
46
{
"name": "changelogify",
"version": "1.2.1",
"description": "A basic changelog manager made to avoid conflicts at git merge",
"main": "src/index.js",
"type": "module",
"bin": {
"changelogify": "src/index.js"
},
"author": {
"name": "Wanadev",
"url": "http://wanadev.fr/"
},
"maintainers": [
{
"name": "robincartier",
"email": "rcartier@wanadev.fr"
},
{
"name": "wanadev",
"email": "it@wanadev.fr"
}
],
"keywords": [
"changelog"
],
"repository": {
"type": "git",
"url": "git+/~https://github.com/wanadev/changelogify.git"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "/~https://github.com/wanadev/changelogify/issues"
},
"homepage": "/~https://github.com/wanadev/changelogify#readme",
"dependencies": {
"commander": "^4.1.0",
"inquirer": "^7.0.3",
"simple-git": "~2.6.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.0"
}
}