-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
83 lines (83 loc) · 1.87 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
{
"name": "jest-runner-stylelint",
"version": "0.0.0-development",
"description": "Stylelint runner for Jest",
"main": "src/index.js",
"repository": "https://github.com/keplersj/jest-runner-stylelint",
"author": "Kepler Sticka-Jones <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"test": "jest"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": [
"jest --bail --findRelatedTests"
]
},
"release": {
"verifyConditions": "@semantic-release/github"
},
"jest": {
"collectCoverage": true,
"projects": [
{
"displayName": "test",
"collectCoverage": true
},
{
"displayName": "lint:prettier",
"preset": "jest-runner-prettier",
"testPathIgnorePatterns": [
"/node_modules/",
"/coverage/"
]
},
{
"runner": "eslint",
"displayName": "lint:eslint",
"testMatch": [
"<rootDir>/**/*.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/coverage/"
]
}
]
},
"dependencies": {
"cosmiconfig": "^7.0.0",
"create-jest-runner": "^0.7.0"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"eslint": "^6.8.0",
"eslint-config-starstuff": "^1.4.42",
"husky": "^7.0.0",
"jest": "^27.0.4",
"jest-runner-eslint": "^0.10.0",
"jest-runner-prettier": "^0.3.6",
"lint-staged": "^11.0.0",
"prettier": "^2.0.5",
"semantic-release": "^17.0.7",
"stylelint": "^13.0.0",
"stylelint-config-standard": "^22.0.0"
},
"peerDependencies": {
"stylelint": "*"
},
"eslintConfig": {
"extends": "starstuff/auto",
"env": {
"node": true
}
}
}