-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
63 lines (63 loc) · 1.37 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
{
"name": "releasy",
"version": "1.13.1",
"description": "CLI tool to release node applications with tag and auto semver bump",
"main": "lib/releasy.js",
"bin": "bin/releasy.js",
"scripts": {
"test": "vtex-test-tools test",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git://github.com/vtex/releasy.git"
},
"keywords": [
"CLI",
"releasy",
"release",
"semver"
],
"author": "Guiherme Rodrigues",
"license": "MIT",
"bugs": {
"url": "https://github.com/vtex/releasy/issues"
},
"homepage": "https://github.com/vtex/releasy",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn lint && yarn test"
}
},
"lint-staged": {
"*.{ts,js,tsx,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.json": [
"prettier --write"
]
},
"dependencies": {
"camelcase": "^5.3.1",
"chalk": "^2.4.2",
"commander": "~3.0.2",
"github-api": "^3.3.0",
"js-yaml": "^3.13.1",
"prompt": "^1.2.0",
"semver": "^6.3.0"
},
"devDependencies": {
"@types/jest": "^26.0.9",
"@vtex/prettier-config": "^1.0.0",
"@vtex/test-tools": "^3.3.0",
"eslint": "^7.6.0",
"eslint-config-vtex": "^14.1.2",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"mock-fs": "^5.1.2",
"prettier": "^2.5.1",
"typescript": "^3.9.7"
}
}