forked from jest-community/eslint-plugin-jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.03 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
{
"name": "eslint-plugin-jest",
"version": "0.0.0-development",
"description": "Eslint rules for Jest",
"repository": "jest-community/eslint-plugin-jest",
"license": "MIT",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": {
"name": "Jonathan Kim",
"email": "hello@jkimbo.com",
"url": "jkimbo.com"
},
"files": [
"docs/",
"rules/",
"processors/",
"index.js"
],
"engines": {
"node": ">= 4"
},
"peerDependencies": {
"eslint": ">=3.6"
},
"scripts": {
"lint": "eslint . --ignore-pattern '!.eslintrc.js'",
"prettylint": "prettylint docs/**/*.md README.md package.json",
"test": "jest",
"precommit": "lint-staged",
"commitmsg": "commitlint -e $GIT_PARAMS"
},
"devDependencies": {
"@commitlint/cli": "^6.0.1",
"@commitlint/config-conventional": "^6.0.2",
"eslint": "^4.10.0",
"eslint-config-prettier": "^2.7.0",
"eslint-plugin-eslint-plugin": "^1.4.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-prettier": "^2.3.1",
"husky": "^0.14.3",
"jest": "^22.0.4",
"jest-runner-eslint": "^0.4.0",
"lint-staged": "^7.0.0",
"prettier": "^1.10.2",
"prettylint": "^1.0.0",
"semantic-release": "^15.0.2",
"travis-deploy-once": "^4.3.1"
},
"prettier": {
"proseWrap": "always",
"singleQuote": true,
"trailingComma": "es5"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{md,json}": [
"prettier --write",
"git add"
]
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"projects": [
{
"displayName": "test",
"testEnvironment": "node"
},
{
"displayName": "lint",
"runner": "jest-runner-eslint",
"testMatch": [
"<rootDir>/**/*.js"
]
}
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}