-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.23 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.23 KB
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
{
"name": "for-testing-auto-init",
"version": "0.0.1",
"private": true,
"description": "Short description.",
"scripts": {
"format": "prettier --write \"**/*.{js,json,yml,md}\"",
"format:check": "prettier --check \"**/*.{js,json,yml,md}\"",
"bumped": "bumped",
"recommended-bump": "conventional-recommended-bump --preset angular --verbose",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "npm run format:check",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS -g \".commitlintrc.json\""
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecmatonix/for-testing-auto-init.git"
},
"keywords": [
"auto-init"
],
"author": {
"name": "Anton Lykov",
"email": "ecmatonix@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ecmatonix/for-testing-auto-init/issues"
},
"homepage": "https://github.com/ecmatonix/for-testing-auto-init#readme",
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"bumped": "^0.12.0",
"bumped-changelog": "^0.3.12",
"bumped-terminal": "^0.7.8",
"conventional-recommended-bump": "^6.0.0",
"husky": "^3.0.3",
"prettier": "^1.18.2"
}
}