-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.29 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
{
"name": "@untile/stylelint-config-untile",
"version": "1.0.0",
"description": "Untile-flavored stylelint config",
"keywords": [
"config",
"react",
"styled-components",
"stylelint",
"untile"
],
"homepage": "https://github.com/untile/stylelint-config-untile#readme",
"bugs": {
"url": "https://github.com/untile/stylelint-config-untile/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/untile/stylelint-config-untile.git"
},
"license": "MIT",
"author": "Untile",
"main": "src",
"scripts": {
"changelog": "echo \"$(github-changelog-generator --future-release=v$npm_package_version)\n$(tail -n +2 CHANGELOG.md)\" > CHANGELOG.md",
"lint": "eslint .",
"lint-staged": "lint-staged",
"prepare": "husky install",
"test": "jest",
"test-watch": "jest --watch --notify",
"version": "npm run changelog && git add -A CHANGELOG.md"
},
"lint-staged": {
"**/*.js": [
"eslint"
],
"package.json": [
"sort-package-json"
]
},
"jest": {
"coverageDirectory": "coverage",
"coverageReporters": [
"html",
"lcov",
"text"
],
"testRegex": "(test/.*\\.test.js)$"
},
"dependencies": {
"stylelint-config-recommended": "^4.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^4.1.0",
"stylelint-processor-styled-components": "^1.10.0"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@commitlint/cli": "^17.0.3",
"@untile/commitlint-config-untile": "^1.0.0",
"@untile/eslint-config-untile-react": "^1.0.0",
"@uphold/github-changelog-generator": "^3.2.0",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.32.0",
"husky": "^8.0.1",
"jest": "^26.6.3",
"jest-preset-stylelint": "^3.0.0",
"lint-staged": "^13.0.3",
"sort-package-json": "^1.55.0",
"stylelint": "^13.12.0"
},
"peerDependencies": {
"stylelint": "^12 || ^13"
},
"engines": {
"node": ">=14.17.0"
},
"validate-branch-name": {
"pattern": "^master{1}$|^(bugfix|dependabot|enhancement|feature|hotfix|release|support)/.+$",
"errorMsg": "Only the following prefixes are allowed: bugfix|dependabot|enhancement|feature|hotfix|release|support"
}
}