-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.11 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
47
48
{
"name": "release-manager",
"version": "0.0.0",
"description": "Utils to manage unconformities between multiple branches on the same repository",
"homepage": "https://github.com/franciscocardoso/release-manager#readme",
"bugs": {
"url": "https://github.com/franciscocardoso/release-manager/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/franciscocardoso/release-manager.git"
},
"license": "ISC",
"author": {
"name": "Francisco Cardoso",
"email": "comat8se@gmail.com"
},
"main": "index.js",
"scripts": {
"lint": "yarn run eslint --fix bin/* clients/*"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged -q"
}
},
"lint-staged": {
"*.js": [
"yarn lint"
],
"bin/*": [
"yarn lint"
]
},
"dependencies": {
"@octokit/rest": "^18.5.2",
"commander": "^7.2.0",
"lodash": "^4.17.21",
"progress": "^2.0.3"
},
"devDependencies": {
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4"
}
}