forked from damian-burke/danger-plugin-lint-report
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.23 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
{
"name": "danger-plugin-lint-report",
"description": "This plugin reads checkstyle / lint reports and posts issues and violations as inline comments in pull requests.",
"author": {
"name": "Damian Burke",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/damian-burke/danger-plugin-lint-report.git"
},
"bugs": {
"url": "https://github.com/damian-burke/danger-plugin-lint-report/issues"
},
"homepage": "https://github.com/damian-burke/danger-plugin-lint-report#readme",
"keywords": [
"danger",
"danger-plugin"
],
"version": "1.7.0",
"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/",
"prepublish": "yarn build",
"semantic-release": "semantic-release pre && yarn publish && semantic-release post",
"prettier": "prettier",
"prettier-write": "yarn prettier --parser typescript --write",
"prettier-project": "yarn prettier-write -- 'src/**/*.{ts,tsx}'",
"lint": "tslint \"src/**/*.ts\""
},
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"danger": "^10.6.6",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"semantic-release": "^17.4.5",
"ts-jest": "^27.0.5",
"tslint": "^5.20.1",
"typescript": "^4.3.5",
"validate-commit-msg": "^2.12.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"tslint --fix",
"yarn prettier-write --",
"git add"
]
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(.test)\\.(ts|tsx)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
]
},
"dependencies": {
"@types/node": "^16.6.1",
"glob": "^7.1.7",
"xml-js": "^1.6.11"
},
"packageManager": "[email protected]"
}