-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.77 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
92
93
94
95
96
97
98
99
100
101
102
{
"name": "eslint-plugin-xunit",
"version": "1.2.1",
"description": "Eslint plugin for xunit tests",
"main": "index.js",
"scripts": {
"bump-release": "npm run bumping -- --unpreid",
"bump:major": "npm run bumping -- --increment major",
"bump:minor": "npm run bumping -- --increment minor",
"bump:patch": "npm run bumping -- --increment patch",
"bump:major:beta": "npm run bumping -- --increment major --preid beta",
"bump:minor:beta": "npm run bumping -- --increment minor --preid beta",
"bump:patch:beta": "npm run bumping -- --increment patch --preid beta",
"bump:prerelease:beta": "npm run bumping -- --increment prerelease --preid beta",
"bumping": "node ./node_modules/npmversion/bin/npmversion",
"style:check": "npm run prettier -- --check \"./lib/**/*.js\"",
"style:fix": "npm run prettier -- --write \"./lib/**/*.js\"",
"prettier": "node ./node_modules/prettier/bin-prettier.js",
"test": "jest"
},
"keywords": [
"eslint",
"eslintplugin",
"xunit"
],
"author": {
"name": "Julien Roche",
"email": "roche.jul@gmail.com",
"url": "http://julienroche.blogspot.fr/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rochejul/eslint-plugin-xunit.git"
},
"bugs": {
"url": "https://github.com/rochejul/eslint-plugin-xunit/issues"
},
"homepage": "https://github.com/rochejul/eslint-plugin-xunit#readme",
"license": "MIT",
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "git-precommit-checks && lint-staged"
}
},
"git-precommit-checks": {
"rules": [
{
"filter": "\\.js$",
"nonBlocking": "true",
"message": "You’ve got leftover `console.log`",
"regex": "console\\.log"
},
{
"message": "You’ve got leftover conflict markers",
"regex": "/^[<>|=]{4,}/m"
},
{
"message": "You have unfinished devs",
"nonBlocking": "true",
"regex": "(?:FIXME|TODO)"
}
]
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"commitizen": "4.0.3",
"cz-conventional-changelog": "3.0.2",
"eslint": "6.8.0",
"eslint-plugin-jest": "22.6.4",
"git-precommit-checks": "3.0.0",
"husky": "4.0.10",
"jest": "24.8.0",
"lint-staged": "10.0.0",
"npmversion": "1.7.0",
"prettier": "1.19.1"
},
"dependencies": {
"clone-deep": "4.0.1"
}
}