-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.53 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
103
104
105
106
107
108
109
{
"name": "selective",
"private": true,
"license": "MIT",
"author": {
"name": "Christian Murphy",
"email": "Christian.Murphy.42@gmail.com",
"url": "https://github.com/ChristianMurphy"
},
"scripts": {
"format": "prettier --write **/*.{js,json,md}",
"commit": "commit",
"lint": "yarn lint-javascript && yarn lint-markdown && yarn lint-commit",
"lint-commit": "commitlint --from HEAD~1",
"lint-commit-ci": "commitlint-travis",
"lint-javascript": "eslint --ignore-path .gitignore .",
"lint-markdown": "remark . --frail --ignore-path .gitignore && eslint --ignore-path .gitignore . --ext md .",
"test": "jest",
"coverage": "jest --coverage"
},
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@commitlint/config-lerna-scopes": "12.1.4",
"@commitlint/prompt-cli": "12.1.4",
"@commitlint/travis-cli": "12.1.4",
"eslint": "7.32.0",
"eslint-config-standard-jsdoc": "9.3.0",
"eslint-plugin-jest": "24.7.0",
"eslint-plugin-jsdoc": "33.3.0",
"eslint-plugin-markdown": "1.0.2",
"husky": "5.2.0",
"jest": "27.4.3",
"lerna": "4.0.0",
"lint-staged": "11.1.2",
"prettier": "2.5.1",
"remark-cli": "9.0.0",
"remark-preset-lint-consistent": "4.0.0",
"remark-preset-lint-recommended": "5.0.0",
"remark-validate-links": "10.0.4"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional",
"@commitlint/config-lerna-scopes"
]
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:jest/recommended",
"standard-jsdoc"
],
"plugins": [
"jest",
"jsdoc",
"markdown"
],
"env": {
"jest/globals": true,
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 2017
}
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write"
]
},
"remarkConfig": {
"settings": {
"ignoreName": ".gitignore"
},
"plugins": [
"preset-lint-recommended",
"preset-lint-consistent",
"validate-links",
[
"remark-lint-list-item-indent",
"mixed"
]
]
},
"renovate": {
"extends": [
"config:base"
],
"automerge": true,
"major": {
"automerge": false
},
"lockFileMaintenance": {
"enabled": true
},
"semanticPrefix": "chore:",
"semanticCommitScope": ""
},
"workspaces": [
"@selective/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}