This repository has been archived by the owner on Jan 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
91 lines (91 loc) · 1.65 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": "jest-runner-groups",
"version": "2.2.0",
"description": "Tag and run groups of tests with Jest",
"license": "MIT",
"author": "Eugene Manuilov <[email protected]>",
"homepage": "https://github.com/eugene-manuilov/jest-runner-groups#readme",
"bugs": {
"url": "https://github.com/eugene-manuilov/jest-runner-groups/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eugene-manuilov/jest-runner-groups.git"
},
"keywords": [
"jest",
"jest-runner",
"groups"
],
"files": [
"*.md",
"LICENSE",
"index.js"
],
"main": "index.js",
"engines": {
"node": ">= 10.14.2"
},
"scripts": {
"lint": "eslint . --ext .js --ignore-pattern node_modules",
"format": "npm run lint --silent -- --fix"
},
"peerDependencies": {
"jest-runner": ">= 24",
"jest-docblock": ">= 24"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.4",
"faker": "^4.1.0",
"husky": "^4.3.8"
},
"eslintConfig": {
"extends": "airbnb-base",
"env": {
"node": true,
"es6": true,
"jest": true
},
"rules": {
"func-names": "off",
"indent": [
"error",
"tab"
],
"import/no-unresolved": "off",
"no-plusplus": [
"error",
{
"allowForLoopAfterthoughts": true
}
],
"no-tabs": [
"error",
{
"allowIndentationTabs": true
}
],
"padded-blocks": [
"error",
{
"classes": "always"
}
],
"space-in-parens": [
"error",
"always"
],
"template-curly-spacing": [
"error",
"always"
]
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint --silent"
}
}
}