-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.39 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
{
"name": "@vtex/danger",
"version": "0.3.0",
"author": "Christian Kaisermann <[email protected]>",
"main": "lib/index.js",
"files": [
"lib/",
"action/dangerfile.js"
],
"bin": {
"vtex-danger": "cli.sh"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --ext js,jsx,ts,tsx .",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json}\"",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"tag": "git tag -a v$npm_package_version -m 'Release v$npm_package_version'",
"release": "npm run version && git add package.json && git commit -m \"chore: release v$npm_package_version\"",
"prepublishOnly": "npm run release && npm run tag"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,tsx,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.json": [
"prettier --write"
]
},
"devDependencies": {
"@vtex/prettier-config": "^0.3.1",
"conventional-changelog-cli": "^2.1.0",
"eslint": "^7.9.0",
"eslint-config-vtex": "^12.8.6",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"releasy": "^1.11.1",
"typescript": "^4.0.3"
},
"dependencies": {
"actions-toolkit": "^6.0.0",
"danger": "^10.4.0",
"danger-plugin-keepachangelog": "^1.0.5"
}
}