-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1.04 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
{
"private": true,
"name": "get-changelog",
"description": "Tools to easily get changelogs",
"repository": {
"type": "git",
"url": "git+https://github.com/Clement134/get-changelog.git"
},
"bugs": {
"url": "https://github.com/Clement134/get-changelog/issues"
},
"homepage": "https://github.com/Clement134/get-changelog#readme",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "jest --silent",
"prepare": "husky install",
"pre-commit": "pretty-quick --staged"
},
"engines": {
"node": ">= 14.0.0"
},
"author": "Clement134",
"license": "MIT",
"devDependencies": {
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "7.0.4",
"jest": "^29.2.0",
"lerna": "^5.0.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.0.0"
}
}