This repository was archived by the owner on Jul 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.02 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@wavevision/semantic-release",
"version": "2.0.2",
"description": "The Wavevision semantic release setup.",
"author": "Wavevision s.r.o <[email protected]>",
"contributors": [
{
"name": "Vít Rozsíval",
"email": "[email protected]"
}
],
"license": "MIT",
"keywords": [
"commitizen",
"commitlint",
"gitflow",
"gitmoji",
"husky",
"semantic-release"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wavevision/semantic-release.git"
},
"bugs": {
"url": "https://github.com/wavevision/semantic-release/issues"
},
"homepage": "https://github.com/wavevision/semantic-release",
"files": [
"commitizen",
"commitlint",
"config",
"gitflow",
"husky",
"utils"
],
"bin": {
"commit": "./commitizen/cli.js",
"setup-commitizen": "./commitizen/setup.js",
"setup-gitflow": "./gitflow/setup.js",
"setup-husky": "./husky/setup.js"
},
"devDependencies": {
"@wavevision/coding-standard": "^6.0.0",
"ava": "^3.15.0",
"eslint-plugin-jsdoc": "^32.3.0",
"mock-fs": "^4.13.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0"
},
"dependencies": {
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/gitlab": "^6.0.9",
"@semantic-release/npm": "^7.0.10",
"commitizen": "^4.2.3",
"commitlint": "^11.0.0",
"commitlint-config-gitmoji": "^2.2.1",
"cz-emoji": "^1.3.1",
"husky": "^5.0.8",
"schema-utils": "^3.0.0",
"semantic-release": "^17.3.7",
"semantic-release-gitmoji": "^1.3.4"
},
"scripts": {
"commit": "./commitizen/cli.js",
"eslint": "eslint . --cache",
"eslint-fix": "yarn eslint --fix",
"fix": "run-s eslint-fix prettier-fix test",
"husky": "husky install",
"prettier": "prettier --check './**/*.{json,md}'",
"prettier-fix": "yarn prettier --write",
"qa": "run-s eslint prettier test-coverage",
"release": "semantic-release",
"test": "ava",
"test-coverage": "nyc ava"
}
}