-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.42 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
{
"name": "@pagopa/danger-plugin",
"version": "2.0.2",
"description": "Shared rules for DangerJS, used in the PagoPA projects",
"author": "Francesco Grauso <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"preversion": "auto-changelog --unreleased --commit-limit false --stdout --template preview.hbs",
"version": "auto-changelog -p --unreleased && git add CHANGELOG.md",
"lint": "eslint . -c .eslintrc.json --ext .ts,.tsx",
"lint-autofix": "eslint . -c .eslintrc.json --ext .ts,.tsx --fix",
"format": "prettier --write ."
},
"devDependencies": {
"@pagopa/eslint-config": "^3.0.0",
"@types/jira-client": "^7.1.4",
"@types/node": "^17.0.35",
"danger": "^11.0.7",
"prettier": "2.6.2",
"typescript": "^4.6.4"
},
"dependencies": {
"@pagopa/ts-commons": "^10.4.0",
"auto-changelog": "^2.4.0",
"fp-ts": "^2.12.1",
"io-ts": "^2.2.16",
"jira-client": "^8.1.0"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,json,yaml}": "prettier --write"
},
"repository": {
"type": "git",
"url": "https://github.com/pagopa/danger-plugin.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"keywords": [
"danger",
"danger-plugin",
"danger-js",
"pagopa"
]
}