This repository was archived by the owner on Jul 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.29 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.29 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
45
46
{
"name": "initial-project-basis",
"version": "0.4.0",
"description": "The basis for the development of projects.",
"private": true,
"scripts": {
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && prettier --write CHANGELOG.md && git add CHANGELOG.md",
"format": "prettier --write \"**/*.{json,yml,md}\"",
"format:check": "prettier --check \"**/*.{json,yml,md}\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "npm run format:check",
"commit-msg": "commitlint --edit --config \".commitlintrc.json\""
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecmatonix/initial-project-basis.git"
},
"keywords": [
"starter-kit",
"conventional-commits",
"conventioanl-changelog",
"commitlint",
"prettier",
"prettier-check",
"husky"
],
"author": {
"name": "Anton Lykov",
"email": "ecmatonix@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ecmatonix/initial-project-basis/issues"
},
"homepage": "https://github.com/ecmatonix/initial-project-basis#readme",
"devDependencies": {
"@commitlint/cli": "^7.6.1",
"conventional-changelog-cli": "^2.0.21",
"husky": "^1.3.1",
"prettier": "1.17.0"
}
}