-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.27 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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "danger-plugin-jira-pr-validation",
"description": "Import metadata from the issue on Jira and perform validations",
"author": {
"name": "Gustavo T. Rudiger",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/x-team/danger-plugin-jira-pr-validation.git"
},
"bugs": {
"url": "https://github.com/x-team/danger-plugin-jira-pr-validation/issues"
},
"homepage": "https://github.com/x-team/danger-plugin-jira-pr-validation#readme",
"keywords": [
"danger",
"danger-plugin",
"jira",
"github"
],
"version": "1.1.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"precommit": "lint-staged",
"commit": "git-cz",
"commitmsg": "validate-commit-msg",
"build": "tsc",
"test": "jest",
"predocs": "rm -rf docs/",
"docs": "esdoc -c .esdoc.json",
"prepublish": "npm run build",
"semantic-release": "semantic-release",
"prettier": "prettier",
"prettier-write": "npm run prettier -- --parser typescript --no-semi --trailing-comma es5 --write --print-width 120",
"prettier-project": "npm run prettier-write -- 'src/**/*.{ts,tsx}'",
"lint": "tslint \"src/**/*.ts\""
},
"license": "MIT",
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"axios": "^1.5.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"danger": "*",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"nock": "^13.3.6",
"prettier": "^3.0.3",
"semantic-release": "^22.0.5",
"ts-jest": "^29.1.1",
"tslint": "^6.1.3",
"typescript": "^5.2.2",
"validate-commit-msg": "^2.12.1"
},
"optionalDependencies": {
"esdoc": "^1.1.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"tslint --fix",
"npm run prettier-write --",
"git add"
]
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(.test)\\.(ts|tsx)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
]
}
}